我正在使用 CakePHP 2。
这是我的控制器。
class GroupsController extends AppController {
public $helper = array('Html', 'Form', 'Session');
public function edit($id = null) {
if (empty($this->request->data)) {
$this->request->data = $this->Group->findByGroupId($id);
} else {
if($this->Group->save($this->request->data)) {
$this->Session.setFlash('Saved!!!');
$this->redirect(array('action' => 'index'));
}
}
}
}
当我按下页面组/编辑/1 上的保存按钮时,出现错误。“错误:调用未定义的函数 setFlash()”
好在我所做的修改是保存到数据库中的,我真的不明白,因为 setFlash() 是 SessionComponent 的一个方法。
请帮忙,谢谢。孔塔。