gpt4 book ai didi

javascript - 具有相同名称参数的表单的 JSON Stringify

转载 作者:行者123 更新时间:2023-11-30 07:12:43 24 4
gpt4 key购买 nike

我需要从具有多个具有相同名称参数的字段的表单中创建一个 JSON,但我想将其分组为数组?可能吗?

已编辑:我尝试了建议的解决方案,但我无法将名称的值用作新数组中的键...你能帮我解决一下如何将其更改为 {name:value[]} 而不是{名称:名称,值:值[]} ?

var json = JSON.stringify($("#frm").serializeArray());
$("#json").html(json);


var myArray = $("#frm").serializeArray();
var groups = {};
for (var i = 0; i < myArray.length; i++) {
var groupName = myArray[i].name;
if (!groups[groupName]) {
groups[groupName] = [];
}
groups[groupName].push(myArray[i].value);
}
myArray = [];
for (var groupName in groups) {
myArray.push({name: groupName, value: groups[groupName]});
}

var json = JSON.stringify(myArray);
$("#json").html(json);

var myArray2 = [];
for (var groupName in groups) {
myArray2.push({groupName: groups[groupName]});
}


var json2 = JSON.stringify(myArray2);
$("#json2").html(json2);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<form id="frm">
<input type="text" name="a" value="1"/>
<input type="text" name="b" value="2"/>
<input type="text" name="a" value="3"/>
<input type="text" name="b" value="4"/>
</form>
<br/>

Edited: I followed the suggested solution, its like this now:
<p id="json">
</p>

<br/>

but I can't use the value of "name" as key for the array
<p id="json2">
</p>

<br/>
<br/>
is it possible to make it like this instead?

<br/>
<p>

{"a":[1,3], "b":[2,4]}
</p>

最佳答案

您可以通过遍历表单数据来创建一个新的对象

const json = $("#frm").serializeArray();
const Obj = {};
json.forEach((item) => (!Obj[item.name]) ? Obj[item.name] = [item.value] : Obj[item.name].push(item.value))

$("#json").html(JSON.stringify(Obj));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>

<form id="frm">
<input type="text" name="a" value="4"/>
<input type="text" name="b" value="1"/>
<input type="text" name="a" value="2"/>
<input type="text" name="b" value="3"/>
</form>
<br/>


<p id="json">
</p>

关于javascript - 具有相同名称参数的表单的 JSON Stringify,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47918970/

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