如何使用一个模型两种不同的形式?(how to use one model for two diff

2019-10-17 13:35发布

我目前工作的yii ,我设计它由一个用户模块user registraionuser loginchange password rule 。 这三个过程中,我设计了只有一个model ,即user model 。 在这个模型中我已经定义的规则:

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

此规则适用于actionRegister 。 但现在我要定义一个新的required ruleactionChangePassword

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

我如何可以定义为这次行动规则?

Answer 1:

规则可以与场景有关 。 如果模型的电流一定的规则将只使用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,
  ));
}


文章来源: how to use one model for two different forms?