jQuery JSON请求

时间:2017-12-21 23:28:58

标签: jquery json api

我很难让温度对象自己读到页面上。 这是jQuery的代码。

$(function () {
  var openWeather = "http://api.openweathermap.org/data/2.5/weather?q=area,us&appid=acddafd";
  $.getJSON(openWeather).done(function (data) {
    console.log(data);
    $(function (index, weather) {
      var p = $("<p>").html("The current weather in area: " + "<br/>" + "Temperature: " + index);
      p.appendTo("#openWeather");

    });

  })
});

如果有人可以帮助让对象加载。这将是值得赞赏的。

0 个答案:

没有答案