我使用cakephp 2.5.4并且想要在数据库中更新记录时,为空的字段,不要更改
这是我的更新功能
...
if ($this->User->save($this->request->data)) {
return $this->User->id;
}
...
Run Code Online (Sandbox Code Playgroud)
在保存数据之前,请从阵列中删除空值.
foreach ($this->request->data as $key => $value) {
if (empty($value))
unset($this->request->data[$key]);
}
if ($this->User->save($this->request->data)) {
return $this->User->id;
}
Run Code Online (Sandbox Code Playgroud)