rules自定义验证配合场景使用 [ 2.0 版本 ]
public function rules()
{
return [
[['name', 'age', 'brithday'], 'required', 'message' => '{attribute}不能为空', 'on' => 'create'],
[['name'], 'unique', 'on' => 'create'],
[['name'], 'check_name'],
[['age'], 'required', 'message' => '不能为空', 'on' => 'update'],
[['age', 'sex'], 'integer', 'on' => 'create'],
[['brithday'], 'safe'],
[['name'], 'string', 'max' => 128],
[['img'], 'string', 'max' => 255],
[['img'], 'file'],
];
}
public function scenarios()
{
$scenarios = parent::scenarios();//本行必填,不写的话就会报如上错误
$scenarios['create'] = ['name', 'age', 'sex', 'brithday'];
$scenarios['update'] = ['name', 'age'];
return $scenarios;
}
这样在验证的时候根本不管用,求解
38295 补充于 2016-09-18 16:50
public function actionValidate()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$model = new Student(); //这里要替换成自己的模型类
$model->load(Yii::$app->request->post());
$error_model = \yii\widgets\ActiveForm::validate($model);
return $error_model;
}
共 5 个回答
-
-
dingjj2010 回答于 2016-09-18 18:08 举报
rules() 和 scenarios()只要有设置一个就够了。
在实例化的时候,例如 $model = new Student();
要传入场景值,有2种方法
1:new Student('update'),
2:$model->scenario = 'update';共 1 条回复 -
-
雖然跟您問的問題無關~ 但您的問題已有人解答
但看到您註解這句 $scenarios = parent::scenarios();//本行必填,不写的话就会报如上错误
你可以看看 Scenario 有兩種寫法 網址如下
http://www.yiiframework.com/doc-2.0/guide-structure-models.html#scenarios
一種是有 Default, 另外一種只限有 Scenario 驗證
Default : 當沒有設定 Scenario 會自行驗證 rules
public function scenarios() { $scenarios = parent::scenarios();//本行必填,不写的话就会报如上错误 //$scenarios['create'] = ['name', 'age', 'sex', 'brithday']; //$scenarios['update'] = ['name', 'age']; return $scenarios; }
customize behavior : 自訂 Scenario 行為
const SCENARIO_CREATE = 'create'; const SCENARIO_UPDATE = 'update'; public function scenarios() { return [ self::SCENARIO_CREATE => ['name', 'age', 'sex', 'brithday'], self::SCENARIO_UPDATE => ['name', 'age'] ]; }
-
38295
注册时间:2016-10-31
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝0
- 金钱35
- 威望0
- 积分35