验证请求中的验证挂钩
我可以在验证挂钩(documentation)之后附加到我的定制请求php artisan make:request
吗?验证请求中的验证挂钩
回答:
您可以覆盖getValidatorInstance()
方法在自定义请求类是这样的:
protected function getValidatorInstance() {
$validator = parent::getValidatorInstance();
// here you can apply hook (example hook taken from documentation):
$validator->after(function ($validator) {
if ($this->somethingElseIsInvalid()) {
$validator->errors()->add('field', 'Something is wrong with this field!');
}
});
return $validator;
}
以上是 验证请求中的验证挂钩 的全部内容, 来源链接: utcz.com/qa/262123.html