laravel 请求索引无法列出数组分类
laravel request index can't list array Categorized
注意:我的问题没有重复
我在站外有表单并使用 web api laravel 5.7
,现在将这些参数发送为 post:
estate: "545345"
id_number: "43534545"
serial_number: "435435345"
type[code_id]: "45345345435"
type[company]: ""
type[country]: ""
type[maintenance_period]: ""
type[model]: "5435345435"
type[name]: "5345345345"
waranty[company_id]: "0"
waranty[duration]: ""
waranty[end]: ""
waranty[start]: ""
部分表格:
<input type="text" name="estate" required="">
<input type="text" name="id_number" required="">
<input type="text" name="type[code_id]">
<input type="text" name="type[company]">
现在我想获取 type
和 waranty
数组:与示例相同:
$type = ['name' => 'test','company' => '...', 'model' => '...' ]
我试试这些代码:
$type = $request->input('type.*'); // NULL
and
$type = $request->input('type'); // NULL
and
$type = Input::get('type'); // NULL
and
$in = $request->all();
$type = $in['type']; // NULL
AND
$request->get('type'); // NULL
AND
$request->post('type') // NULL
不起作用 :( ,只有我可以通过这种方法获得单个变量:(但我需要数组)
$in = $request->all();
$in['type[code_id]'] ;
我测试了 type[][code_id]
,type[][name]
,... 形式但没有工作:(
我的axios
方法:
serial = function (id) {
var srl = $(id).serializeArray();
var post = {};
for (const k in srl) {
let item = srl[k];
post[item.name] = item.value;
}
return post;
}
axios.post(url, serial("#frm")).then(function (res) {// succs axios ;
console.log(res);
}).catch(err => {// error axios ;
console.log(err);
}); // end axios ;
什么是 Laravel 本机解决方案?对于这个问题?
注意:我可以创建一个函数来解决这个问题,但我需要 laravel 本机解决方案。
你可以用这个函数处理数组:
function categorizedArray($array){
$ret = [] ;
$re = '/(.*)\[(.*)\]/U';
foreach ($array as $i => $value) {
preg_match_all($re, $i, $matches, PREG_SET_ORDER, 0);
if ($matches == []){
$ret[$i] = $value ;
}else{
$ret[$matches[0][1]][$matches[0][2]] = $value ;
}
}
return $ret;
}
for exmp: ( 我们假设函数定义为 helper )
$all = categorizedArray($request->all());
注意:我的问题没有重复
我在站外有表单并使用 web api laravel 5.7
,现在将这些参数发送为 post:
estate: "545345"
id_number: "43534545"
serial_number: "435435345"
type[code_id]: "45345345435"
type[company]: ""
type[country]: ""
type[maintenance_period]: ""
type[model]: "5435345435"
type[name]: "5345345345"
waranty[company_id]: "0"
waranty[duration]: ""
waranty[end]: ""
waranty[start]: ""
部分表格:
<input type="text" name="estate" required="">
<input type="text" name="id_number" required="">
<input type="text" name="type[code_id]">
<input type="text" name="type[company]">
现在我想获取 type
和 waranty
数组:与示例相同:
$type = ['name' => 'test','company' => '...', 'model' => '...' ]
我试试这些代码:
$type = $request->input('type.*'); // NULL
and
$type = $request->input('type'); // NULL
and
$type = Input::get('type'); // NULL
and
$in = $request->all();
$type = $in['type']; // NULL
AND
$request->get('type'); // NULL
AND
$request->post('type') // NULL
不起作用 :( ,只有我可以通过这种方法获得单个变量:(但我需要数组)
$in = $request->all();
$in['type[code_id]'] ;
我测试了 type[][code_id]
,type[][name]
,... 形式但没有工作:(
我的axios
方法:
serial = function (id) {
var srl = $(id).serializeArray();
var post = {};
for (const k in srl) {
let item = srl[k];
post[item.name] = item.value;
}
return post;
}
axios.post(url, serial("#frm")).then(function (res) {// succs axios ;
console.log(res);
}).catch(err => {// error axios ;
console.log(err);
}); // end axios ;
什么是 Laravel 本机解决方案?对于这个问题?
注意:我可以创建一个函数来解决这个问题,但我需要 laravel 本机解决方案。
你可以用这个函数处理数组:
function categorizedArray($array){
$ret = [] ;
$re = '/(.*)\[(.*)\]/U';
foreach ($array as $i => $value) {
preg_match_all($re, $i, $matches, PREG_SET_ORDER, 0);
if ($matches == []){
$ret[$i] = $value ;
}else{
$ret[$matches[0][1]][$matches[0][2]] = $value ;
}
}
return $ret;
}
for exmp: ( 我们假设函数定义为 helper )
$all = categorizedArray($request->all());