Laravel如何将自定义验证消息放入验证包?

问题描述 投票:0回答:4

如何将外部验证器的错误消息放入消息包?问题是:我从我的API获得验证器的错误响应,我收到错误消息,我想推送到我的页面上的现有验证器。

所以,我有一个表单,可以通过我页面上的laravel验证器和API验证器进行验证。

我试过的是:

dd(ValidationException::withMessages([ 'email' => $errors->email, ])); $errors->email只是一个错误信息。但是,它不能像在内部在本地项目上验证那样工作,验证消息不会被翻译等等......

我也试过了

throw ValidationException::withMessages([
      $validator->errors()->add('email', $errors->email[0])
]);

它接近解决方案:在ValidationException我有异常的实例但消息属性太嵌套了:

{

"validator": {
     "messages": {
         "0" => [
             0 => MessageBag(2)
          ]
      }
   }
}

消息过于嵌套,但仍然与本地消息的行为不同。

如果我不够清楚,我可以提供进一步的解释。

编辑:

要从API中获取错误,我使用:

$errors = $response->getErrors()->email;给了我:

array:1 [▼
  0 => {#784 ▼
    +"code": 42252
    +"message": "The email has already been taken."
  }
] 

所以我不能使用$response->getErrors()->email->first()

laravel validation laravel-5.6
4个回答
1
投票

尝试此操作首先设置错误:

ValidationException::withMessages([
    "email" => $errors->email->first()
]);

然而,我更感兴趣的是你如何选择显示错误。

请记住,不要在Laravel中使用密钥访问器来访问集合中的对象,也不要将它们转换为数组。 Eloquent和Collection方法几乎可以通过外观继承在几乎任何集合对象上普遍使用,并且非常有用。

https://laravel.com/docs/5.6/validation#customizing-the-error-messages

编辑:此外,可能会搜索并重新阅读此页面上的“命名错误包”部分和“自定义错误消息”部分。如果我的方法不能让您靠近,他们可能会为您找到解决方案。


0
投票

最好是使用表单请求验证

Documentation

例如:

class UpdateName extends BaseRequest {

    public function rules()
    {
        return [
            'name' => 'required',
        ];
    }

    public function messages()
    {
        return [
        'name.required' => 'Your name is required or any custom msg',
        ];
    }
}

0
投票

尝试使用$ php artisan make:request MyNewRequestName制作您自己的请求验证器

class MyNewRequestName extends BaseRequest {

    public function rules()
    {
        return [
            'input_field' => 'required|integer',
        ];
    }

    public function messages()
    {
        return [
            'input_field.required' => 'This field is required',
            'input_field.integer'  => 'This field must contain integers only',
        ];
    }
}

然后,在你的控制器中:

public function update( MyNewRequestName $request )
{
    //... another code here
}

0
投票

以这种方式使用。

    throw  \Illuminate\Validation\ValidationException::withMessages([
         'email' => 'Your validation message'
   ]);
© www.soinside.com 2019 - 2024. All rights reserved.