0

私は現在 で作業しており、&yiiで構成されるユーザー モジュールを設計しました。これらの 3 つのプロセスに対して、私が設計したのは 1 つだけです。このモデルでは、ルールを定義しました。user registraionuser loginchange password rulemodeluser model

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

このルールは に有効ですactionRegisterrequired ruleしかし今、新しいforactionChangePasswordを定義したいと思います。

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 に答える