我尝试通过 Axios 发出 API 请求,但收到此错误。
Error: Network Error
at e.exports (createError.js:16)
at XMLHttpRequest.g.onerror (xhr.js:117)
这是代码:
async function getData() {
await axios
.get(
"api.openweathermap.org/data/2.5/weather?q={city name}&appid={api key}"
)
.then(function (data) {
console.log(data);
})
.catch(function (err) {
console.log(err);
});
}
我该如何解决这个问题?
谢谢
尝试提及正确的协议。
"https://api.openweathermap.org/..."
确保您使用正确的 URI 路径。 另请检查您的连接情况。
err
的值也可能值得研究。