我有小问题,我有控制器扩展 AbstractActionController,我需要在任何操作之前调用一些函数,例如 indexAction 我认为 preDispatch() 在任何操作之前调用但是当我在 $this->view->test 中尝试此代码时没有什么。
class TaskController extends AbstractActionController
{
private $view;
public function preDispatch()
{
$this->view->test = "test";
}
public function __construct()
{
$this->view = new ViewModel();
}
public function indexAction()
{
return $this->view;
}
}