gpt4 book ai didi

php - FormRequest 中的条件语句

转载 作者:搜寻专家 更新时间:2023-10-31 21:01:22 26 4
gpt4 key购买 nike

在我的 Controller 中,我在验证之前有条件语句

if ($request->department == 5) {

$this->validate($request, [
//validation here
];

} else {

$this->validate($request, [
//validation here
];

}

现在我创建 FormRequest php artisan make:request DepartmentRequest

method rules() 中,我不知道如何访问 department 参数,我试过:

if($request->department == 1) 但是抛出了 Exception: Error - undefined $request 变量。

最佳答案

您可以在表单请求方法中使用 $this->input('department'),因为 FormRequest 扩展了 Request 类。

关于php - FormRequest 中的条件语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41518714/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com