我很难让温度对象自己读到页面上。 这是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");
});
})
});
如果有人可以帮助让对象加载。这将是值得赞赏的。