首页 > 解决方案 > 如何自定义 laravel 数组验证错误键和消息

问题描述

FormRequest在我的应用程序中用于验证数据。

示例代码:

<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class UserRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'skills' => "required|array",
            "skills.*" => "required|min:2|max:20"
        ];
    }
}

默认情况下,当我通过请求此示例数据时:

{
    "skills" => [
        "a",
        "apple"
    ]
}

然后得到错误信息:

{
    "errors": {
        "skills.0": [
            "The skills.0 must be at least 2 characters."
        ],

        "skills.1": [
            "The skills.1 may not be greater than 4 characters."
        ]
    }
}

我如何自定义此验证错误消息并在结果中得到类似这样的错误:

{
    "errors": {
        "skills": [
            "The skills with key 0 must be at least 2 characters.",
            "The skills with key 1 may not be greater than 4 characters."
        ]
    }
}

标签: phplaravellaravel-7

解决方案


使用 Laravel表单请求验证。表单请求是包含验证逻辑的自定义请求类。


推荐阅读