gpt4 book ai didi

javascript - 如何使用 Javascript 和数据集创建 JSON?

转载 作者:行者123 更新时间:2023-11-28 21:07:50 25 4
gpt4 key购买 nike

我知道我可以创建这个 JSON:

[
{
"Title": "Something",
"Price": "234",
"Product_Type": "dsf sf"
},
{
"Title": "hskiuea",
"Price": "4234",
"Product_Type": "sdawer"
}
]

*它使用从包含在类“newpappend”的元素中的文本输入获得的值 - 如下所示

使用以下代码从我的 HTML 中获取值:

var jsonObj = []; //declare array


$(".newpappened").each(function () {

var p_title = $(this).find('#p_title').val();
var p_price = $(this).find('#p_price').val();
var p_ptype = $(this).find('#p_ptype').val();

jsonObj.push({Title: p_title, Price: p_price, Product_Type: p_ptype});
$(this).remove();
});

但是,我的目标是最终得到如下结构的 JSON:

{
"Product_List": {
"Product": [
{
"Title": "asdf",
"Price": "53",
"Product_Type": "Adfsdf"
},
{
"Title": "asgsd",
"Price": "123",
"Product_Type": "Ntohig"
}
]
}
}

基本上,我正在努力寻找正确的 Javascript 来实现我的目标

最佳答案

你们真的很亲近。从你拥有的开始,然后再:

var output = {
"Product_List": {
"Product": jsonObj
}
}
// output is now what you are looking for.

关于javascript - 如何使用 Javascript 和数据集创建 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9407798/

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