拉拉维尔 |唯一验证 where 子句

2021-11-15 00:00:00 api mysql laravel lumen

我正在尝试验证存在的电子邮件地址的输入,但仅当 company_id 与随请求传入的 company_id 相同时才有效.

I am trying to validate the input of a email address that exists but only when the company_id is the same as the company_id which is passed in with the request.

我收到此错误...

SQLSTATE[42S22]:未找到列:1054 'where 子句'中的未知列 '1'(SQL:选择 count(*) 作为来自 company_users 的聚合,其中 email_address = myemail.com 和 1 <> company_id)

SQLSTATE[42S22]: Column not found: 1054 Unknown column '1' in 'where clause' (SQL: select count(*) as aggregate from company_users where email_address = myemail.com and 1 <> company_id)

我在网上阅读过,这样做的方法是将验证中的表和列关联起来,这就是我正在做的.

I have read online and the way to do it is to associate the table and the column inside of the validation which is what I am doing.

这是我当前的代码...

This is my current code...

required|email|unique:company_users,email_address,company_id,' . $request->company_id

推荐答案

这里有一个粗略的想法,你可以实现你的目标

Here is a rough idea with this you can achieve what you

您可以使用 Rule 类为您自定义验证规则.

You can use Rule class to customize the validation rule for you.

'email' => ['required', 'string', 'email', 'max:191',Rule::unique('users')->where(function ($query) use ($request) {
    return $query->where('company_id', $request->company_id);
})],

希望能帮到你

相关文章