我想根據經緯度擺脫OpenWeatherMap API天氣,但我發現了錯誤jQuery的AJAX調用與OpenWeatherMap - 網:: ERR_CONNECTION_REFUSED
net::ERR_CONNECTION_REFUSED
項目是codepen.io
var appid = "myID";
function getLocation() {
$.getJSON('https://geoip-db.com/json/geoip.php?jsonp=?')
.done (function(location)
{
$('.country').html(location.country_name);
$('.city').html(location.city);
var lat = location.latitude;
var lon = location.longitude;
var weatherLink = "https://api.openweathermap.org/data/2.5/weather?lat=" + lat + "&lon=" + lon + "&appid=" + appid + "&callback=?";
$('body').append(weatherLink);
$.ajax({
url: weatherLink,
dataType: "jsonp",
success: function(response) {
$('body').append(response);
}
});
});
}
$(document).ready(function() {
getLocation();
});
我使用https://geoip-db.com/來獲取經度和緯度。 URL(weatherLink)是正確的。全錯誤:
GET https://api.openweathermap.org/data/2.5/weather?lat=51.1&lon=17.0333&appid= …0b9873ed&callback=jQuery22406914555127333375_1469796455615&_=1469796455617 net::ERR_CONNECTION_REFUSED
這是一個低級別的套接字錯誤。 –
我能做些什麼呢? – gkopowski
問openweathermap,不在這裏。 –