在Zend框架中:如何将当前操作中的消息发送到Controller中的另一个操作?
答案 0 :(得分:4)
这是使用FlashMessenger的一个非常简单的示例,因此您可以在代码中使用它:
public function indexAction()
{
$messages = $this->_helper->FlashMessenger->getMessages('actions');
echo $messages[0];
}
public function redirectAction()
{
$this->_helper->FlashMessenger->addMessage("Your message", 'actions');
$this->_redirect('index/index');
}
如果您在浏览器中指向“重定向”操作,则应该获得带有消息的indexAction。