我正在尝试在路由功能中使用$this
,当我这样做时,它会给我以下错误:
Using $this when not in object context
以下是代码:
function api($request, $response) {
$response->write('REST API v1');
$this->logger->addInfo("Something interesting happened");
return $response;
}
$app = new \Slim\App();
/** my routes here **/
$app->get('/', 'api');
$app->run();
我尝试根据this实现它。
为什么在函数内使用$this
不起作用,如何在函数中使用$this
。
答案 0 :(得分:2)
使用字符串声明函数时,无法在函数内部使用$this
。使用匿名函数(控制器类也可以修复):
$app->get('/', function ($request, $response) {
$response->write('REST API v1');
$this->logger->addInfo("Something interesting happened");
return $response;
});
请参阅:http://www.slimframework.com/docs/objects/router.html
如果使用Closure实例作为路由回调,则闭包的状态将绑定到Container实例。这意味着您可以通过
$this
关键字访问Closure内部的DI容器实例。