我试图在Laravel中对关联的对象数组进行验证。
我传递给控制器的有效JSON字符串如下所示:
{
'create': [
{
'artnr': '123456',
'unit': 'Stk.'
},
{
'artnr': '23456',
'unit': 'Kg.'
}
],
'update': [
{
'id': 1
'artnr': '567890',
'unit': 'Stk.'
},
{
'id': 2
'artnr': '67836',
'unit': 'Kg.'
}
]
}
验证数据的控制器功能如下所示:
public function store(Request $request)
{
$request->replace(array(
'create' => json_decode($request->create),
'update' => json_decode($request->update)
));
$validator = Validator::make($request->all(), [
'create' => 'required|array',
'create.*.artnr' => 'required|max:20',
'create.*.unit' => 'max:20',
'update' => 'required|array',
'update.*.id' => 'required|exists:products,id',
'update.*.artnr' => 'required|max:20',
'update.*.unit' => 'max:20'
])->validate();
}
虽然我在store
函数中指定每个对象必须存在artnr
,但是当我传递没有artnr
的对象时,控制器不会抛出错误。
任何想法我做错了什么?
修改
好的,在关注user2486的建议并使用不同的样本数据之后,我现在发现验证器在我传递id
,artnr
,unit
等属性时有效作为关联数组。像这样:
$arr = array(
'create' => array(
array(
'artnr' => '123456',
'unit' => 'Kg'
), array(
'unit' => 'Stk.'
)
), 'update' => array(
array(
'id' => 1,
'unit' => 'Stk.'
), array(
'id' => 2,
'artnr' => '123456',
'unit' => 'Kg'
)
)
);
然而,当我解码我的JSON字符串时,属性被解析为对象,因此不会抛出任何错误!
验证器规则是否可能对对象使用不同类型的表示法?
如果无法验证对象,我想我只会将每个对象转换为关联数组。
答案 0 :(得分:0)
好的,所以解决方法是调用我的json_decode
函数
json_decode($request->create, true)
。
将第二个参数设置为true
时,该函数会将每个JSON对象转换为关联数组。