使用数组getJSON

时间:2017-12-21 18:49:31

标签: javascript jquery json

我正在使用此范围来解析json数据:

$.getJSON(geocodingAPI, function (json) {

    // Set the variables from the results array
    var address = json.results[0].formatted_address;
    console.log('Address : ', address);

    var latitude = json.results[0].geometry.location.lat;
    console.log('Latitude : ', latitude);

    var longitude = json.results[0].geometry.location.lng;
    console.log('Longitude : ', longitude);

    // Set the table td text
    $('#address').text(address);
    $('#latitude').text(latitude);
    $('#longitude').text(longitude);
});

它适用于一个项目,但我需要将所有数据迭代到我的页面上。我是新手,想知道如何迭代数据并显示的不仅仅是第一项?

DEMO

1 个答案:

答案 0 :(得分:0)

在javascript中有很多方法可以迭代一个对象数组,你可以使用这样的forEach方法:

all