所以我要进行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调用有什么问题吗?