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

Laravel | Unique validation where clause(拉拉维尔 |唯一验证 where 子句)
本文介绍了拉拉维尔 |唯一验证 where 子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试验证存在的电子邮件地址的输入,但仅当 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);
})],

希望能帮到你

这篇关于拉拉维尔 |唯一验证 where 子句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)