-2
我想通過第一次循環json對象,我想要做的就是列出所有的temp變量的內容,但我無法計算如何循環工作。通過使用jQuery的JSON循環
$("button").click(function(){
var url = "http://api.openweathermap.org/data/2.5/forecast?lat=53.7&lon=0.3&callback=?" ;
$.getJSON(url, function(res) {
$('#result').html('<p>lon: ' + res.city.coord.lon + '</p>');
$('#result').append('<p>lat: ' + res.city.coord.lat + '</p>');
$('#result').append('<p>wind: ' + res.wind.speed + '</p>');
$.each(res.list.main, function(i, temp) {
$('#result').append('<p>temp: ' + temp[i] + '</p>');
});
});
});
'temp'是值,不需要括號'[]' –
你試圖確定你的$ .each回調期間發生了什麼? –