cakephp - 不要在更新时更改空字段

Far*_*had 1 php cakephp

我使用cakephp 2.5.4并且想要在数据库中更新记录时,为空的字段,不要更改

这是我的更新功能

...
   if ($this->User->save($this->request->data)) {
       return $this->User->id;
   }
...
Run Code Online (Sandbox Code Playgroud)

Dei*_*oks 5

在保存数据之前,请从阵列中删除空值.

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)