相同的调用适用于fetch(),但适用于Axios失败

时间:2019-12-03 20:47:38

标签: vue.js axios fetch

所以我要进行GET API调用,以便使用访问令牌登录。第一个代码段使用fetch且可以正常工作,第二个代码段使用axios并产生“被CORS策略阻止”错误。

获取:

return fetch(`${this.state.ApiBaseUrl}/api/user/`, {
  method: 'GET',
  headers: {
    'Accept': 'application/json',
    'Authorization': `Bearer ${res.access_token}`
  }
})

Axios:

return axios.get(`${this.state.ApiBaseUrl}/api/user/`, {
  headers: {
    'Accept': 'application/json',
    'Authorization': `Bearer ${res.access_token}`
  }
});

您知道Axios调用有什么问题吗?

0 个答案:

没有答案