【发布时间】:2012-05-15 14:56:28
【问题描述】:
所以我正在使用 zend-framwork 创建一个项目,并且我正在尝试实现 flash messenger 助手,但我找不到任何好的实践来实现它。 我需要的是使用 flash messenger 发送消息并重定向,而消息将直接出现在 layout.phtml 中的特定位置。 我知道对于重定向器我可以这样做:
$redirector = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
$redirector->gotoUrl('/my-controller/my-action/param1/test/param2/test2')
->redirectAndExit();'
我可以对 flash messenger 做些什么来使其正常工作?最好的做法是什么?
【问题讨论】:
标签: zend-framework action helper flash-message