Getting Error: Network Error at e.exports (createError.js:16) at XMLHttpRequest.g.onerror (xhr.js:117) for API call
Getting Error: Network Error at e.exports (createError.js:16) at XMLHttpRequest.g.onerror (xhr.js:117) for API call
我正在尝试通过 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
的值也可能值得研究。
我正在尝试通过 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
的值也可能值得研究。