验证器用来验证传来的参数是否符合规定
控制器中使用验证器,例如:
public function store(Request $request)
{
$param = $request->all();
$rules = [
'name' => 'required|max:50',
'file_id' => 'required|numeric',
'type' => 'required|numeric|in:1,2,3',
];
$attributes = [
'required' => ':attribute不能为空',
'max' => ':attribute不能超过:max个字符',
'numeric' => ':attribute必须为数字',
'in' => ':attribute错误',
];
$message = [
'name' => '姓名',
'type' => '类型',
'file_id' => '文件id',
];
$validator = Validator::make($param, $rules, $attributes, $message);
if ($validator->fails()) {
return $validator->errors()->first();
}
//验证通过-继续执行。。。
}