使用 getJSON 从 openweathermap.org 获取数据

Fetch data from openweathermap.org using getJSON

我正在尝试使用 jQuery 函数 getJSON 从 openweathermap.org 获取数据,但出现了一些问题

var apiKey = "54df40e238084fbf095d3540271e48a0";
var URL = "api.openweathermap.org/data/2.5/weather?q=London&appid=" + apiKey;

$(document).ready(function() {

  $.getJSON(URL, function(data) {
    console.log(data);
  })


});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

url错了,你需要这样做。

var apiKey = "54df40e238084fbf095d3540271e48a0";
var URL = "https://api.openweathermap.org/data/2.5/weather?q=London&appid="+apiKey;

$(document).ready(function(){

$.getJSON(URL,function(data){
    console.log(data);
})
});

希望对您有所帮助。