无法行走JSON结构

时间:2013-11-09 08:16:33

标签: javascript jquery json

我有一个看起来像这样的json结构:

[
    {
        "coordinates": [
            75.71027043,
            26.88661823
        ]
    },
    {
        "coordinates": [
            75.71027043,
            26.88661823
        ]
    }
]

我正在尝试访问坐标,以便我可以将它们输入到谷歌地图API中。

function loadTweets(results) {
    var tweetStructure = $.parseJSON(results);
    console.log(tweetStructure);
    for (a in tweetStructure){
      console.log(a);
      for (coords in a){
        console.log(coords);
      }
    }

var myLatlng = new google.maps.LatLng(coords[0],coords[1]);

每当我尝试使用此代码遍历结构时,我最终会使用键而不是值(我认为)。谁能指出我做错了什么?

这是我要回来的:

[Object, Object, Object, Object, Object, Object]
0: Object
coordinates: Array[2]
__proto__: Object
1: Object
2: Object
3: Object
4: Object
5: Object
length: 6
__proto__: Array[0]

0 
0 
1 
0 

1 个答案:

答案 0 :(得分:0)

尝试这样的事情

             var tweetStructure = $.parseJSON(results);
                for (a in tweetStructure){
                    var co_arr = tweetStructure[a];
                  for (coords in co_arr.coordinates){
                    console.log(co_arr.coordinates[coords]);
                  }
            }