在 AppController 中:
public $helpers=array("Session","Html","Form");
public $components = array(
'Session',
'Auth' => array(
'loginRedirect' => array('controller' => 'MainPages', 'action' => 'home'),
'logoutRedirect' => array('controller' => 'MainPages', 'action' => 'front')
)
);
在 MainPagesController 中:
public function front()
{
$this->Session->setFlash('Your stuff has been saved.');
debug($this->Session->read('Message'));
//etc...
在默认布局中 (default.ctp)
<div id="content">
<?php echo "Flash:" ?>
<?php echo $this->Session->flash(); ?>
正确的闪存消息显示在调试中,但不在视图中。我错过了什么?PS这不是因为?>之后的空间。
编辑:我发现 CakePHP 出于某种原因在会话组件之前调用了会话助手。仍在试图弄清楚如何解决它。