$ model-validation()总是在yii中返回false?

时间:2013-07-24 13:44:53

标签: php validation yii

我是YII框架的新手。我正在写一个简单的方法来更改密码,我想验证控件,如果空白然后显示错误消息或如果密码和重新键入密码不匹配然后显示错误。我使用以下代码执行此操作:

public function actionChange()
{
    $model=new Users;
    $model->scenario='change';
    if (isset($_POST['Users'])) {
        $model->setAttributes($_POST['Users']);                     

        if($model->validate())
            {
                print "true";   
            }
        else{

                print "false";  
            }   

        if($model->validate())
            {       
                $pass = md5($_POST['Users']['newPassword']);            
                $userModel = Users::model()->findByPk(Yii::app()->user->id);
                $userModel->password = $pass; 
                $data = $userModel->update();
            }

            if(isset($data))
            {
                Yii::app()->user->setFlash('success',"Password changed successfully!");
                $this->redirect(array('Users/change'), true);
            }
        }


$this->render('change_password', array('model'=>$model,true));
}

但是**$model->validate()**总是向我返回false,要么填写字段,要么不填写。

更新:

这里是规则功能:

public function rules()
{
    return array(
        array('is_active', 'numerical', 'integerOnly'=>true),
        array('first_name, joining_date,last_name, employee_code, username, password, role', 'required'),       
        array('employee_code', 'numerical', 'integerOnly'=>true),
        array('username','email'),      
        array('username','valid_username','on'=>array('create')),

        //array('username', 'contraints', 'readOnly'=>true, 'on'=>'update'),

        array('currentPassword, newPassword, newPasswordRepeat', 'required','on'=>array('change')),
        //array('newPassword', 'length', 'min' => 6, 'max'=>20, 'message'=>Yii::t("translation", "{attribute} is too short.")),
        //array('newPassword','ext.SPasswordValidator.SPasswordValidator', 'preset' => 'strong', 'max' => 41),
        array('newPassword', 'compare', 'compareAttribute'=>'newPasswordRepeat','on'=>array('change')),
        array('currentPassword', 'equalPasswords','on'=>array('change')),
        array('verifyCode', 'captcha', 'allowEmpty'=>!CCaptcha::checkRequirements(),'on'=>array('forgotPassword')),
        array('joining_date', 'safe'),
        array('user_id, first_name, last_name, employee_code, username, password, role, joining_date, pending_regular_leave, pending_medical_leave, allocated_regular_leave, allocated_medical_leave, is_active', 'safe', 'on'=>'search'),
    );
}


public function equalPasswords($attribute, $params)
{
    $user = Users::findByPk(Yii::app()->user->id);
    if ($user->password != md5($this->currentPassword))
        $this->addError($attribute, 'Old password is incorrect.');
}

请帮帮我。

2 个答案:

答案 0 :(得分:4)

由于某种原因,您的验证失败了。尝试在else块中显示验证错误(验证失败时)。

 if($model->validate()) {
 ....
 }
 else {
      $errors = $model->getErrors();
      var_dump($errors); //or print_r($errors)
      exit;
 }

如果它没有帮助,你可以尝试从规则中评论一些验证规则,看看哪些规则失效。

答案 1 :(得分:2)

尝试使用正确的方法设置场景,您有两个选择:

$model=new Users('change');

$model=new Users;
$model->setScenario('change');

另一个问题是你没有从数据库加载模型,除非你让他们输入他们的user_id或你的主键在表单上。很可能你需要添加:

$model = Users::model()->findByPk(Yii::app()->user->id);
//$model=new Users; //Should be removed

否则,它甚至不知道在DB中更新哪个记录,所有其他字段都将完全为空。

此外,如果您使用的是像CActiveForm这样的表单小部件,您也可以将其添加到您的视图中,它会显示验证失败的消息:

echo $form->errorSummary($model);