gpt4 book ai didi

laravel-5.2 - 如何在验证消息 Laravel 5.2 中获取数组索引

转载 作者:行者123 更新时间:2023-12-02 07:23:51 26 4
gpt4 key购买 nike

我将这些数组放入 Laravel Validator 作为参数:

['item.*' => 'string'] // rules

['item.*.string' => 'Item number (index) is not string'] // messages

我想在验证消息中有 index number。上面的代码仅用于演示,不起作用。如何做到这一点?

最佳答案

试试这个或使用这个

    'name' : [ { 'value' : 'raju' } , { 'value' : 'rani'} ]       

并通过

验证它
    'name.*' or 'name.*.value' => 'required|string|min:5'       

消息将是

    'name.*.required' => 'The :attribute is required'       
'name.*.value.required' => 'The :attribute is required'

我觉得对你有帮助..

试试这个,

public function messages()
{
$messages = [];
foreach ($this->request->get('name') as $key => $value){
$messages['name.'. $key .'.required'] = 'The item '. $key .' is not string';
}
return $messages;
}

关于laravel-5.2 - 如何在验证消息 Laravel 5.2 中获取数组索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36571628/

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