我现在正在练习cakephp,但我的输入无法保存到我的数据库中。这是我的功能添加代码:
public function add(){
$this->layout = 'default';
if ($this->request->is('post')) {
if ($this->Applicant->save($this->request->data)) {
$this->Session->setFlash('Your account has been saved.');
return $this->redirect(array('action' => 'index'));
}
$this->Session->setFlash('Unable to add account!.');
}
}
我需要帮助。