flashmessenger

Zend Framework 2 Flash Messenger returning no messages

﹥>﹥吖頭↗ 提交于 2019-12-06 03:47:21
问题 I'm having a rather odd problem with flash messenger in ZF2. I'm using it in quite a simple scenario, save a 'registration complete' message after registering and redirect to the login page and display the message however the messages are never returned by the flash messenger. In controller register action: $this->flashMessenger()->addMessage('Registration complete'); return $this->redirect()->toRoute('default', array('controller' => 'user', 'action' => 'login')); In controller login action:

Zend Framework 2 Flash Messenger returning no messages

醉酒当歌 提交于 2019-12-04 07:50:41
I'm having a rather odd problem with flash messenger in ZF2. I'm using it in quite a simple scenario, save a 'registration complete' message after registering and redirect to the login page and display the message however the messages are never returned by the flash messenger. In controller register action: $this->flashMessenger()->addMessage('Registration complete'); return $this->redirect()->toRoute('default', array('controller' => 'user', 'action' => 'login')); In controller login action: $flashMessenger = $this->flashMessenger(); $mes = $flashMessenger->hasMessages(); $cur =