我需要制作扩展Illuminate\Validation\Validator
我在这里的答案中读到了一个例子:Custom validation in Laravel 4
但问题是它没有清楚地显示如何使用自定义验证器。它没有明确地调用自定义验证器。你能给我一个如何调用自定义验证器的例子。
答案 0 :(得分:1)
在Laravel 5.5之后,您可以创建自己的自定义验证规则对象。
要创建新规则,只需运行artisan命令:
php artisan make:rule GreaterThanTen
laravel会将新规则类放在app/Rules
目录
自定义对象验证规则的示例可能如下所示:
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class GreaterThanTen implements Rule
{
// Should return true or false depending on whether the attribute value is valid or not.
public function passes($attribute, $value)
{
return $value > 10;
}
// This method should return the validation error message that should be used when validation fails
public function message()
{
return 'The :attribute must be greater than 10.';
}
}
定义了自定义规则后,您可以在控制器验证中使用它,如下所示:
public function store(Request $request)
{
$request->validate([
'age' => ['required', new GreaterThanTen],
]);
}
这种方法比Closures
类
AppServiceProvider
的旧方法要好得多
答案 1 :(得分:0)
我不知道这是否是您想要的,但是要设置海关规则,您必须首先扩展自定义规则。
Validator::extend('custom_rule_name',function($attribute, $value, $parameters){
//code that would validate
//attribute its the field under validation
//values its the value of the field
//parameters its the value that it will validate againts
});
然后将规则添加到验证规则
$rules = array(
'field_1' => 'custom_rule_name:parameter'
);