我试图通过使用开放天气API制作天气应用程序,所以当我通过ajax请求时,请求成功但它没有返回任何内容。请指出我的错误。
$(document).ready(function () {
$('#submit-weather').click(function () {
var city = $('#city').val();
if (city != "") {
$.ajax({
url: 'http://api.openweathermap.org/data/2.5/weather?q=' + city + '&units=metric' + '&APPID=**********',
type: "GET",
datatype: "jsonp",
success: function (data) {
console.log(data);
}
});
} else {
$('#error').html('Let first write city name');
}
});
});