我正在尝试在 Laravel 11 中为 POST 调用编写一个验证,该调用传递这样的对象列表
[{"id": 1, "name": "One"}, {"id": 2, "name": "Two"}]
我找到的所有文档都解释了如何验证列表(如果它是子对象),如
{"list": [{"id": 1, "name": "One"}, {"id": 2, "name": "Two"}]}
,但此 api 期望数据根为列表,从而使此尝试无效。
您可以将闭包作为验证规则传递,并在其中执行您想做的任何操作:
public function rules()
{
return [
'your_param' => [
'required',
function (string $attribute, mixed $value, Closure $fail) {
if ($value === 'foo') {
$fail("The {$attribute} is invalid.");
}
},
]
]
}
查看更多:https://laravel.com/docs/11.x/validation#using-closures
或者,一种更可测试、更简洁的方法是编写自定义规则类