我有一个控制器动作助手,我将用户对象保存到视图中(在init函数中),如下所示:
Zend_Layout::getMvcInstance()->getView()->user = $user;
我想在控制器插件的preDispatch方法中访问该对象,因此我不必在数据库中查找用户。我试过这样做:
$user = Zend_Layout::getMvcInstance()->getView()->user;
但它返回一个null对象。我希望它,因为我做错了,而不是因为我在我的登录逻辑中编写了一个catch 22。有没有其他方法可以访问该对象?
答案 0 :(得分:6)
我认为将以下方法放入您的操作助手可能会对您有所帮助。
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上有一个good explanation of action helpers。特别是direct()
方法的目的。
答案 1 :(得分:-1)
是的,好的方法是为当前登录的用户提供单例类;在这种情况下,它可以在任何地方访问 - 插件,视图,表单。