gpt4 book ai didi

JavaScript 解析嵌套 JSON 数组

转载 作者:行者123 更新时间:2023-12-03 11:35:15 26 4
gpt4 key购买 nike

我有以下 JSON。

它是不同点(x,y,w,h)的坐标。我需要用 hashmap 解析这个 JSON?大批?稍后需要每个点的坐标以供使用。

我该如何继续?

{ "_id" : "543e95dddedd",
"result" : [ [ "Point1",
[ [ 22,
32,
444,
4444
] ]
],
[ "point2",
[ [ 43,
112,
442,
344
],
[ 34,
34,
1246,
44
]
]
]
]
}

这样,我就可以在“points”中正确显示 JSON:

app.get('/id/:id', function (req, res){
return Coordonate.findById(req.params.id, function (err, points) {
if (!err) {
return res.send(points);
} else {
return console.log(err);
}
});
});

感谢您的帮助!

最佳答案

假设您的 JSON 存储在 obj 变量中。

var points = {}
for (var i in obj.result){
var pointName = obj.result[i][0];
var coordinates = obj.result[i][1];
points[pointName] = coordinates;
}

console.log(points);

关于JavaScript 解析嵌套 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26544407/

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