我有这个类和过滤器:
class ApiController extends BaseController {
public function __construct()
{
$this->afterFilter(function()
{
if ($this->response_type == 'json'){
}
});
}
当这条线运行时...
if ($this->response_type == 'json'){
...我指的是控制器,但不知何故它正在调用过滤器,所以我不能对父对象做任何事情。
有什么方法可以调用控制器类吗?
谢谢。