我是Yii的新手。我已创建密码更改表单,页面名称更改。在该页面中有三个字段旧密码,新密码和确认新密码字段。
我的规则
public function rules() {
return array(
array('old_password, confirm_password, str_user_password', 'required',
'on' => 'change'),
array('confirm_password', 'compare', 'compareAttribute' => 'str_user_password',
'message' => 'Password Must Be same.', 'on' => 'change'),
);
}
控制器
public function actionChange($id)
{
$model=new User('change');
//$model->setScenario('change');
$model=$this->loadModel($id);
if(isset($_POST['User']))
{
$model->attributes=$_POST['User'];
if($model->save())
$this->redirect(array('view','id'=>$model->int_user_id));
}
$this->render('change',array(
'model'=>$model,
));
}
创建和更新页面验证工作。我已将其复制到更新页面,它正在完美运行。我认为这是情景问题。请帮我找一个解决方案。
答案 0 :(得分:1)
试试这个...... 我认为Load模型会创建覆盖您的场景的新模型。
$model=$this->loadModel($id);
$model->setScenario('change');
答案 1 :(得分:0)
您必须将新密码与确认密码字段进行比较:
array('confirm_password', 'compare', 'compareAttribute' => 'new_password',
'message' => 'Password Must Be same.', 'on' => 'change'),
或
array('new_password', 'compare', 'compareAttribute' => 'confirm_password',
'message' => 'Password Must Be same.', 'on' => 'change'),