从JSON数组中获取第n个项目

时间:2015-06-28 19:31:23

标签: javascript jquery arrays json

我使用此查询获取了一些JSON数组数据:

$.getJSON(locationstring, function (result) {
    $.each(result, function (i, field) {
        console.log(result);
    });
});

它打印得像这样:

enter image description here

我需要获取标签下的值" formatted_address"在数组的第0个对象(或第1个)中,如图所示。我怎么能这样做?

这是为了获得值" formatted_address"来自此链接的第0个数组项: http://maps.googleapis.com/maps/api/geocode/json?latlng=7.243286200000001,80.61632869999999&sensor=true

2 个答案:

答案 0 :(得分:2)

$.getJSON(locationstring, function (result) { 
    console.log(result.results[0].formatted_address);
});

完整的代码,以获得您想要的东西。您不需要$.each

答案 1 :(得分:0)

试试这个:

$.getJSON(locationstring, function (result) {
    console.log(result.results[0].formatted_address);
});