我正在使用cakePHP会话setFlash(),它不会在视图上显示消息 我读了它包含消息的会话。我的消息,
$this->Session->setFlash('Uploaded the file successfully.', Messages::MSG_INFO);
我检查了会话,
LogUtil::$logger->debug('Session Data :'.var_export($this->Session->read('Message'),true));
以上记录器的结果是,
array (
'auth' => array (
'message' => 'Login failed. Invalid username or password.',
'element' => 'msg_error',
'params' => array (),
),
'flash' => array (
'message' => 'Uploaded the file successfully.',
'element' => 'msg_info',
'params' => array (),
),
)
请帮我解释为什么不显示flash消息。
答案 0 :(得分:2)
var $helpers = array('Session');
在您的控制器中?
如果您已声明它,您是否尝试回显
$this->Session->flash()
在你看来?
可能会导致在视图文件中显示消息。