当前位置:  开发笔记 > 后端 > 正文

如何在插件中获取视图对象?

如何解决《如何在插件中获取视图对象?》经验,为你挑选了1个好方法。

我有一个控制器动作助手,我将用户对象保存到视图中(在init函数中),如下所示:

Zend_Layout::getMvcInstance()->getView()->user = $user;

我想在控制器插件的preDispatch方法中访问该对象,因此我不必在数据库中查找用户.我尝试这样做:

$user = Zend_Layout::getMvcInstance()->getView()->user;

但它返回一个空对象.我希望它,因为我做错了,而不是因为我在我的登录逻辑中编写了一个catch 22.有没有其他方法来访问该对象?



1> vascowhite..:

我认为将以下方法放入您的操作助手可能会对您有所帮助.

private $user

public function init()
{
    $this->user = new user();
}

public function preDispatch()
{
    $user = $this->user;
    //Do whatever you wish with the user object.
    // although you probably don't need to do anything.
}

public function direct()
{
    Zend_Layout::getMvcInstance()->getView()->user = $this->user;
    //alternatively just return the user object or whatever you want to do
}

然后,一旦您的助手被注册,您只需$this->_helper->helperName()在控制器中将用户对象放入视图中即可.

Mathew WeirO'Phiney 对devzone上的行动助手有一个很好的解释.特别是该direct()方法的目的.

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有