我有以下代码:
function getWeather() {
var url = "http://api.openweathermap.org/data/2.5/weather?lat=35& lon=139?jsoncallback=?";
$.getJSON(url, function (data) {
console.log(data.id);
});
}
根据Firefox,我在第1行:8
中丢失了分号错误{"coord":{"lon":139,"lat":35},"sys":{"message":0.0106,"country":"JP","sunrise":1427920171,"sunset":1427965544},"weather":[{"id":800,"main":"Clear","description":"Sky is Clear","icon":"01d"}],"base":"stations","main":{"temp":285.577,"temp_min":285.577,"temp_max":285.577,"pressure":1026.48,"sea_level":1034.31,"grnd_level":1026.48,"humidity":100},"wind":{"speed":5.56,"deg":57.001},"clouds":{"all":0},"dt":1427944893,"id":1851632,"name":"Shuzenji","cod":200}
我找不到错误。
答案 0 :(得分:0)
看起来上述资源期望回调参数名称为callback
而不是jsonpcallback
function getWeather() {
var url = "http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139&callback=?";
$.getJSON(url, function (data) {
console.log(data);
});
}
演示:Fiddle
您也可以使用CORS支持
function getWeather() {
var url = "http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139";
$.getJSON(url, function (data) {
console.log(data);
});
}
演示:Fiddle
答案 1 :(得分:0)
尝试在Chrome的开发者控制台中运行代码确实会出错,尽管它抱怨意外冒号:
而不是分号;
。似乎jQuery期待JSONP作为回报。检查文档确认添加与callback=?
类似或类似的参数会提示jQuery将结果解释为JSONP,但结果是普通的旧JSON。
删除jsoncallback=?
。
另一方面,您所拥有的链接看起来有点奇怪,似乎还有一个额外的问号?
和一个额外的空格。您还应该删除多余的字符。通常情况下,&号
&
用于分隔请求参数。
http://api.openweathermap.org/data/2.5/weather?lat=35&% lon=139?jsoncallback=?
^ ^
使用以下网址产生您期望的结果
http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139