Laravel:如何使用验证规则之前和之后验证两个可选的日期字段
Posted
技术标签:
【中文标题】Laravel:如何使用验证规则之前和之后验证两个可选的日期字段【英文标题】:Laravel: How can I validate two optional date fields using the before and after validation rules 【发布时间】:2020-05-09 02:30:27 【问题描述】:我正在尝试验证日期字段,以便 active_from 需要是 active_until 之前的日期,而 active_until 需要是一个日期在 active_from 之后。
这两个字段都被隐藏和禁用,直到用户在名为 active 的选择字段上选择“是”。
当用户选择是时,active_from 出现并成为必需,active_until 也出现,但它是可选的,这就是我的问题,因为只要 >active_until 未填充。
据我了解,如果该字段可能已启用/存在,我应该使用有时规则,该规则仅在该字段存在且已启用时才检查其他验证。例如
'active_from' => 'sometimes|required_if:active,yes|date|before:active_until',
如果一个字段可能会或可能不会被填充,则应该使用可为空规则,但如果该字段可能存在或可能不存在,是否也应该使用它?例如
'active_until' => 'sometimes|nullable|date|after:active_from',
所以我的问题是如何检查 active_from 是否在 active_until 之前,只有当 active 被选择为 Yes > 并且仅当 active_until 被填充时。
我是否正确使用了规则,active_from 应该只使用 sometimes 规则还是也应该使用 nullable 规则?
代码:
$validated = $request->validate([
'title' => 'required|string|min:3|max:30|unique:categories',
'description' => 'nullable|string|min:3|max:255',
'active' => 'required|in:yes,no',
'active_from' => 'sometimes|required_if:active,yes|date|before:active_until',
'active_until' => 'sometimes|nullable|date|after:active_from',
'highlighted' => 'sometimes|required_if:active,yes|in:yes,no',
'highlighted_from' => 'sometimes|required_if:highlighted,yes|date|before:highlighted_until',
'highlighted_until' => 'sometimes|nullable|date|after:highlighted_from',
]);
【问题讨论】:
【参考方案1】:我终于弄明白了。
这是我的固定代码:
$validated = $request->validate([
'title' => 'required|string|min:3|max:30|unique:categories',
'description' => 'nullable|string|min:3|max:255',
'active' => 'required|in:yes,no',
'active_from' => 'required_if:active,yes|date',
'active_until' => 'nullable|date|after:active_from',
'highlighted' => 'required_if:active,yes|in:yes,no',
'highlighted_from' => 'required_if:highlighted,yes|date',
'highlighted_until' => 'nullable|date|after:highlighted_from',
]);
即使用户在 active 选择上选择“是”,我也不需要检查两个日期是可选的,我只需要检查 active_until 日期(可选的) 以查看它是否是 active_from 日期之后的有效日期。
这样,即使用户没有填写 active_until 日期,验证也不会失败,因为我在该字段上有可为空的规则。
至于有时规则,据我了解,仅当请求中可能存在或不存在字段时才需要使用它,例如
'active' => 'sometimes|required|in:yes,no',
这样,只有当它出现在请求中时才需要它,但由于我在我的代码中使用 required_if,所以它不是必需的,因为它取决于其他字段的值。
【讨论】:
【参考方案2】:对于复杂的验证规则
use Illuminate\Support\Facades\Validator;
....
$data = $request->all();
$validator = Validator::make($data,[
//...your unconditional rules goes here
]);
//your conditional rules goes here
$validator->sometimes('active_form', 'before:active_until', function ($request)
return $request->filled('active_until');//if here return true,rules will apply
);
重要链接conditionally-adding-rulesretrieving-input
【讨论】:
以上是关于Laravel:如何使用验证规则之前和之后验证两个可选的日期字段的主要内容,如果未能解决你的问题,请参考以下文章
在 laravel nova 验证中检查 to_date 之前的 from_date 和 from_date 之后的 to_date,以及今天之前的两个日期