我的数据库中有一个名为任务的表,名为 cakephp1。我已经在控制器中编写了这段代码:
function edit($id = null) {
if (!$id) {
$this->Session->setFlash('Invalid Task');
$this->redirect(array('action'=>'index'), null, true);
}
if (empty($this->data)) {
$this->data = $this->Task->find(array('id' => $id));
} else {
if ($this->Task->updateAll(debug($this->data))){
$this->Session->setFlash('The Task has been saved');
$this->redirect(array('action'=>'index'), null, true);
} else {
$this->Session->setFlash('The Task could not be saved.
Please, try again.');
}
}
}
我是 cakephp 新手,这是我正在尝试的示例。请帮帮我。我可以做些什么来更新专栏?