我正在使用这个插件:我网站上的简单天气将天气绑定到我正在构建的简单小部件中。
我需要做的就是从邮政编码中显示更深入的位置。目前,如果我在其源代码中控制台记录“结果”对象,我只有三个位置选项。
在插件的每个函数中,我添加了这个:
console.log(result);
在这个大对象中,我可以看到一个位置对象,它具有以下值:
location: Object
city: "Sydney"
country: "AS"
region: ""
如果我能得到州、适当的郊区/城市、邮政编码,我会很高兴。Current'y 我输入了澳大利亚的邮政编码 2250,悉尼不是该邮政编码的城市。
我可以添加一些东西来检索这些数据吗?
这是我用来实例化简单天气的方法。
$.simpleWeather({
zipcode: '2250', //Gosford
//woeid: '2357536',
location: 'Australia',
unit: 'c',
success: function(weather) {
$('#imageThumbnail').html('<img src="'+weather.image+'" width="110" >');
$('#degree .degree').html(weather.temp+'° ');
$('.minmax .min').html('MIN: '+weather.low+'°' + weather.units.temp);
$('.minmax .max').html('MAX: '+weather.high+'°' + weather.units.temp);
$(".weather .content").slideDown().closest('.weather').find('.loading').remove();
},
error: function(error) {
$(".weather").html('<p>'+error+'</p>');
}
});