Slim PHP - 使用新的Slim 3.1解决回调问题

时间:2016-01-15 11:37:49

标签: php slim

我刚刚从Slim 2升级到Slim 3.1。 这是我的代码:

require_once(PROJECT_ROOT . 'api/vendor/autoload.php');
class API
{
    public function __construct( ) {

        $this->slimObj = new \Slim\App;

        $this->initAPI();

        $this->slimObj->run();
    }
    private function initAPI () 
    {
        $this->slimObj->get('/first/:ID', array($this, 'callback')); 
    }
    function callback( $ID ) {
        // ...
    }
}

当我致电myserver.php/first/1时,我收到Page Not Found错误。 我的代码出了什么问题?

由于

0 个答案:

没有答案