問題:
Yii框架中不能直接給模型的attributes賦值。
首先看一下原始碼:
$menuId = isset($_GET['mId']) ? $_GET['mId'] : 0; if ($menuId) { $menu = MenuTree::model()->findByPk($menuId); if(isset($_POST['MenuTree'])){ var_dump($menu->attributes); //在这里跟踪输出的数据正常,跟表单中填写的一致 $menu->attributes = $_POST['MenuTree']; //对attributes进行赋值 var_dump($menu->attributes); //输出$menu模型中的attributes,不正常,结果并不是POST接收到的值,而是数据库原有的值 if($menu->save()){ Yii::app()->user->setFlash('success',"恭喜您,修改成功,请继续!"); $this->redirect(Yii::app()->createUrl('menu/contentEdit',array('mId'=>$menuId))); }else{ throw new CException("修改失败!"); } } $this->render("contentEdit", array('menu' => $menu)); } else { throw new CHttpException('404'); }
(相關文章教學推薦:yii框架)
這是一個頁面的action程式碼,看程式碼中的註解可以看到出現的錯誤,不接受POST的賦值,試過使用setAttributes函數也一樣不接受,輸出的還是原始資料庫的值,但是用updateByPk操作就可以,追蹤了一下setAttributes函數,發現函數定義如下:
public function setAttributes($values,$safeOnly=true) { if(!is_array($values)) return; $attributes=array_flip($safeOnly ? $this->getSafeAttributeNames() : $this->attributeNames()); foreach($values as $name=>$value) { if(isset($attributes[$name])) $this->$name=$value; else if($safeOnly) $this->onUnsafeAttribute($name,$value); } }
分析setAttributes函數程式碼可以看到,在對attributes賦值時進行安全檢查,所以想到原因可能出現模型的rules沒有對那幾個表單中修改的欄位設定為安全,找到原因,解決方案就出來了,在model的rules中,把想要修改的欄位的屬性設為安全即可。
public function rules() { // NOTE: you should only define rules for those attributes that // will receive user inputs. return array( // more code... array('field1 , field2 ,field3', 'safe'), //Modify the fields in here // more code... ); }
更多程式相關內容,請關注php中文網程式設計入門欄位!
以上是yii中為模型的attributes賦值失敗的詳細內容。更多資訊請關注PHP中文網其他相關文章!