我编写了一个控制器插件,它将一些变量传递给我的视图。但在我看来,这些变量是无法访问的。
这是示例代码:
namespace Application\Controller\Plugin;
use Zend\Mvc\Controller\Plugin\AbstractPlugin;
use Zend\View\Model\ViewModel;
class Myclass extends AbstractPlugin
{
public function setup($event)
{
$view = new ViewModel();
return $view->setVariables(array(
'MyVariable' => 'VALUE' //this variable is not accessible from within view
));
}
}
有什么建议吗?