我不知道这到底是API还是axios的bug

dced5bon  于 2022-11-23  发布在  iOS
关注(0)|答案(1)|浏览(172)

我遇到的一个问题是,当我键入**console.log(response.data)**时它应该向我显示一个包含许多数组的对象,但它的位置却向我显示了一个错误:**未捕获(在承诺中)=〉**我在控制台中得到此错误
知道我的API没有错误,因为当我在postman中尝试它时,它会带来正确的参数。
这是我代码:

const baseUrl = "https://....";

function getStandings() {
  const url = `${baseUrl}/standings`

  axios.get(url, {
    headers: {
      "X-Auth-Token": `${token}`
    }
  })
  .then((response) => {
    console.log(response.data)
  });

}

getStandings();

tokenbaseUrl,它们都正确。

它进入错误,我把它记录到控制台。这是我得到的:👇🏼:
message: 'Network Error', name: 'AxiosError', code: 'ERR_NETWORK', config: {…}, request: XMLHttpRequest, …

w8ntj3qf

w8ntj3qf1#

我找到了解决方案,只是问题出在**CORS**上,我不得不从不支持它的浏览器中输入,以显示API的结果。
这个网站对我帮助很大=〉Run Chrome browser without CORS

相关问题