我正在尝试从 openweathermap 获取天气数据。这个 url 适用于我输入的坐标,当我在浏览器栏中输入 url 时,我可以下载 JSON。我正试图让这个在我的页面中工作。当我运行此代码时,在 Firebug 中我可以看到 HTTP 请求获得了 200 成功代码,但由于某种原因它没有打印响应。我没有正确使用 getJSON 吗?
var url = "http://api.openweathermap.org/data/2.5/forecast?lat="+ position.coords.latitude +"&lon=" + position.coords.longitude;
$.getJSON(url, function(res) {
console.log(res);
});