在我的应用程序的某些部分,我只需要更新某些表的字段is_active,其中包含很多字段.仅更新此字段并避免所有其他字段的验证和要求的最佳方法是什么?
如果您只想更新特定行,请使用:
原文链接:https://www.f2er.com/php/137825.html$users= TableRegistry::get('Users'); $user = $users->get($id); // Return article with id = $id (primary_key of row which need to get updated) $user->is_active = true; // $user->email= abc@gmail.com; // other fields if necessary if($users->save($user)){ // saved } else { // something went wrong }