检查代码 $(function () { axios .get("https://devapi.qweather.com/v7/weather/now", { params: { key: "8d6ff3227f094b17b2a9302c00fb52d7", location: "101110101" } }) .then(function (response) { console.log(response); let now=response.data.now let img =$(`< img src="./img/${101}.svg" width="100px" height="100px"></img>`) let text=$(`<span>${now.text}</span>`) let temp=$(`<span>${now.temp}℃</span>`) $(".container>.line1").append(img).append(text).append(temp) let li1=$(`<li>风向<br>${now.windDir}</li>`) let li2=$(`<li>风力<br>${now.windScale}</li>`) let li3=$(`<li>湿度<br>${now.humidity}</li>`) let li4=$(`<li>气压<br>${now.pressure}</li>`) let li5=$(`<li>体感温度<br>${now.feelsLike}</li>`) let li6=$(`<li>云量<br>${now.cloud}</li>`) $(".container>ul").append(li1).append(li2).append(li3).append(li4).append(li5).append(li6) }) .catch(function (error) { console.log(error); }); });
时间: 2024-04-22 16:27:32 浏览: 102
Error:in ./node-modules/axios/lib/platform/index.js
这段代码使用了axios库向和风天气API发送GET请求,获取北京市的实时天气数据,并将其展示在页面上。其中使用了一些jQuery操作,如使用append方法将元素添加到DOM中。请注意,这里的天气图标是使用了本地的图片资源,而不是使用API返回的图标。如果要使用API返回的图标,需要根据API返回的数据动态生成对应的图标。
阅读全文