我刚刚从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
错误。
我的代码出了什么问题?
由于