gpt4 book ai didi

javascript - AngularJS JavaScript 解析 JSON 的一部分

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

我有以下 JSON。我有一个参数要提供,我需要返回所有数字。

如果我给“BUS”,我需要返回1,38,44,58

JSON 示例:

{  
_id:"23456789",
result:[
[
"Car",
[
[
2,
3,
4,
6
],
[
3,
4,
444,
123
],
[
43,
34,
91446,
344473
]
]
],
[
"Bus",
[
[
1,
38,
4458,
0981
]
]
],
[
"Moto",
[
[
5,
43,
41440,
804444
]
]
]
]
}

这是我的代码:

    var coordinates = [];
console.log("tag :"+tag); // tag is the parameter "Bus", "Car" or "Moto"
$http.get('http://myserver:1234/bbox/'+id)
.success(function (response) {
var point = {};
// Don't know how to catch a specific word (i.e Car or BUS or Moto)
for (var i in response){
var pointName = response.result[i][0];
coordinates.push(response.result[i][1]);
points[pointName] = coordinates;
}

})
.error(function (response) {
console.log(response);
});

tag 已经设置了一个参数。只需要返回一个给定的坐标。

感谢您的帮助!

最佳答案

对于 JSON 响应来说,这是一种非常奇怪的结构,但您仍然可以提取必要的数据。例如使用 Array.prototype.filter 方法:

var coordinates = response.result.filter(function(el) {
return el[0] === tag;
})[0][1][0];

对于等于“Bus”的 tag,上面的代码将为您提供 [1, 38, 4458, 981] 数组。

关于javascript - AngularJS JavaScript 解析 JSON 的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27312755/

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