出现错误:API 调用的 XMLHttpRequest.g.onerror (xhr.js:117) 处的 e.exports (createError.js:16) 出现网络错误

问题描述 投票:0回答:1

我尝试通过 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);
    });
}

我该如何解决这个问题?

谢谢

javascript axios openweathermap weather
1个回答
1
投票

尝试提及正确的协议。

"https://api.openweathermap.org/..."

确保您使用正确的 URI 路径。 另请检查您的连接情况。

err
的值也可能值得研究。

© www.soinside.com 2019 - 2024. All rights reserved.