0

我目前正在工作yii,我设计了一个用户模块,其中包含user registraion, user login& change password rule。对于这三个过程,我只设计了一个,modeluser model. 在这个模型中,我定义了一个规则:

array('email, password, bus_name, bus_type', 'required'), 

此规则适用于actionRegister. 但现在我想定义一个新required rule的 for actionChangePassword

array('password, conf_password', 'required'), 

如何定义此操作的规则?

4

1 回答 1

3

规则可以与场景相关联。scenario仅当模型的当前属性表明应该使用某个规则时,才会使用该规则。

示例型号代码:

class User extends CActiveRecord {

  const SCENARIO_CHANGE_PASSWORD = 'change-password';

  public function rules() {
    return array(
      array('password, conf_password', 'required', 'on' => self::SCENARIO_CHANGE_PASSWORD), 
    );
  }

}

示例控制器代码:

public function actionChangePassword() {
  $model = $this->loadModel(); // load the current user model somehow
  $model->scenario = User::SCENARIO_CHANGE_PASSWORD; // set matching scenario

  if(Yii::app()->request->isPostRequest && isset($_POST['User'])) {
    $model->attributes = $_POST['User'];
    if($model->save()) {
      // success message, redirect and terminate request
    }
    // otherwise, fallthrough to displaying the form with errors intact
  }

  $this->render('change-password', array(
    'model' => $model,
  ));
}
于 2013-01-05T08:04:33.050 回答