我确信一些简单的问题。函数本身正在执行所要求的操作,但操作时消息不会闪烁。
以下功能:
function edit($id = null) {
if($this->Auth->user('id')==$id) {
$this->set('user', $this->User->read(null, $id));
} else {
$this->Session->setFlash(__('You are not authorized to edit other member profiles', true));
$this->redirect(array('action' => 'index'));
}
if (!empty($this->data)) {
if ($this->User->save($this->data)) {
$this->Session->setFlash(__('Member profile saved', true));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('Member profile could not be saved. Please, try again.', true));
}
}
if (empty($this->data)) {
$this->data = $this->User->read(null, $id);
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
}
仍在学习蛋糕绳索并点燃一些非常古老的PhP技能 - 所以请耐心等待!谢谢!
答案 0 :(得分:0)
在
下添加另一行echo $this->Session->flash('auth');
像这样:
echo $this->Session->flash();
这将显示常规Flash消息
将'auth'传递给flash方法只会显示auth flash消息而不会显示任何其他消息。有关详细信息,请参阅http://api13.cakephp.org/class/session-helper#method-SessionHelperflash。