我是 cakephp 新手,我试图在我的代码中使用 $this->Session->setFlash() 并且它说有一个错误:调用非对象上的成员函数 setFlash() !这是我的代码
function add(){
if(!empty($this->data)){
if($this->Post->save($this->data)){
$this->Session->setFlash('The post was successfully added');
$this->redirect(array('action'=>'index'));
}else{
$this->Session->setFlash('The post was not saved, please try again');
}
}
}
我能做些什么来解决这个问题?