我正在使用这个 api: http: //openweathermap.org/api但我不知道我如何才能获得今天、第二天和后天的数据。有什么建议我可以使用哪些参数以及如何使用?
我试过这样但我迷路了:
var weatherUrl = 'http://api.openweathermap.org/data/2.5/forecast?q=Zurich&APPID=08dbab0eeefe53317d2e0ad7c2a2e060&units=metric';
$.getJSON(
encodeURI(weatherUrl),
function(data) {
if(data !== null && data.list !== null) {
var result = data,
weather = {},
compass = ['N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N'],
image404 = 'https://s.yimg.com/os/mit/media/m/weather/images/icons/l/44d-100567.png';
console.log(result);
for(var i = 0; i < result.list.length; i++){
weather.temp = Math.round(result.list[i].main.temp);
weather.code = result.list[i].weather[0].id;
weather.text = ucfirst(result.list[i].weather[0].description);
weather.date = result.dt_txt;
}
options.success(weather);
} else {
options.error('There was a problem retrieving the latest weather information.');
}
}
);