私はほとんど問題がありません.コントローラーはAbstractActionControllerを拡張しており、アクションの前に何らかの関数を呼び出す必要があります.たとえば、indexActionはアクションの前にpreDispatch()が呼び出されると思いますが、なし。
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;
}
}