繁体   English   中英

验证数组中的复合键?

[英]Validate composite key within array?

为了在我的应用程序中验证电话号码,我需要将它与国家 ID 结合起来,以确保组合是唯一的,而不是电话号码本身。 这在过去不是问题,已经在验证类中使用以下方法解决了

   'phone' => ['required', 'string',
            Rule::unique('users')
                ->where('country_id', $this->country_id)
                ->where('phone', $this->phone)
        ],

但是我现在接受了一系列用户并且以下规则似乎不起作用

  'contacts.*.phone' => ['required', 'string',
            Rule::unique('users')
                ->where('country_id', $this->country_id)
                ->where('phone', $this->phone)
        ],

尚未在堆栈溢出或文档中找到任何有关此问题的信息

您可以使用Rule::forEach实现此目的,在您的用例中它可能如下所示:

'contacts.*.phone' => [
    'required',
    'string',
    Rule::forEach(function ($value, $attribute) {
        return [
            Rule::unique('users')
                ->where('country_id', $value)
                ->where('phone', $value),
        ];
    }),
],

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM