문제:
Yii 프레임워크에서는 모델의 속성에 값을 직접 할당할 수 없습니다.
먼저 소스 코드를 살펴보세요:
$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 프레임워크)
페이지의 액션 코드입니다. POST 할당이 허용되지 않습니다. setAttributes 함수를 사용해 보았으나 여전히 허용되지 않았습니다. 출력은 여전히 원래 데이터베이스의 값이지만 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 함수 코드를 분석해 보면 속성에서 값을 할당할 때 보안 검사를 수행한다는 것을 알 수 있는데, 모델의 규칙이 안전하다고 설정되지 않을 수 있는 이유를 생각해 봅니다. 해당 양식에서 수정된 필드. 이유가 발견되면 해결책이 나옵니다. 모델의 규칙에서 수정하려는 필드의 속성을 안전으로 설정하면 됩니다.
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에서 모델 속성에 값을 할당하지 못했습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!