gpt4 book ai didi

php - laravel 请求索引无法列出数组分类

转载 作者:搜寻专家 更新时间:2023-10-31 21:20:12 25 4
gpt4 key购买 nike

注意:我的问题没有重复

我在站点外有表单并使用 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]">

现在我想要获取typewaranty 数组:与示例相同:

$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;
}

例如:(我们假设函数定义为 helper )

$all = categorizedArray($request->all());

关于php - laravel 请求索引无法列出数组分类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53791876/

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