我正在尝试创建一个简单的Weather APP,我正在使用jquery Ajax方法从openweathermap中检索数据。我使用以下方法来获取数据。
$(document).ready(function(){
$('#submitWeather').click(function(){
let city = $("#city").val();
if(city != ''){
//Get the AJAX request.
$.ajax({
url:'http://api.openweathermap.org/data/2.5/weather?q=' + city + "&appid=b1b15e88fa797225412429c1c50c122a1",
type: "GET",
//jsonpadded.
dataType: "jsonp",
//the callback for success.
success: function(data){
console.log(data);
}
});
}else {
$("#error").html('Field cannot be empty');
}
});
});
我遇到的问题是它没有在console.log中显示数据。这是我在console.log中得到的错误
jquery.min.js:4 GET http://api.openweathermap.org/data/2.5/weather?q=London&appid=b1b15e88fa797225412429c1c50c122a1&callback=jQuery31106677768465103353_1512307813960&_=1512307813961 net::ERR_ABORTED
send @ jquery.min.js:4
ajax @ jquery.min.js:4
(anonymous) @ app.js:6
dispatch @ jquery.min.js:3
q.handle @ jquery.min.js:3
答案 0 :(得分:0)
ajax请求的dataType是" json"不是" jsonp"
dataType(默认值:Intelligent Guess(xml,json,script或html))
参考:http://api.jquery.com/jquery.ajax/
$.ajax({
url:'http://api.openweathermap.org/data/2.5/weather?q=' + city + "&appid=b1b15e88fa797225412429c1c50c122a1",
type: "GET",
dataType: "json",
success: function(data){
console.log(data);
}
});
更新:
openweathermap支持" JSONP"但你错误地使用它是一个如何使用$ .ajax来调用命名方法的例子
function callback(data){
console.log(data);
}
$.ajax({
url:'http://api.openweathermap.org/data/2.5/weather?q=' + city + "&appid=b1b15e88fa797225412429c1c50c122a1",
type: "GET",
dataType: "jsonp",
jsonp : "callback",
jsonpCallback: "callback"
});