如何通过 axios.js 发送带有令牌的身份验证标头?我尝试了一些没有成功的事情,例如:
const header = `Authorization: Bearer ${token}`;
return axios.get(URLConstants.USER_URL, { headers: { header } });
给我这个错误:
XMLHttpRequest cannot load http://localhost:8000/accounts/user/. Request header field header is not allowed by Access-Control-Allow-Headers in preflight response.
我已经通过设置全局默认值设法让它工作,但我猜这不是单个请求的最佳主意:
axios.defaults.headers.common['Authorization'] = `Bearer ${token}`;
更新 :
科尔的回答帮助我找到了问题所在。我正在使用django-cors-headers 中间件,默认情况下它已经处理了授权标头。
但是我能够理解错误消息并修复了我的 axios 请求代码中的错误,它应该如下所示
return axios.get(URLConstants.USER_URL, { headers: { Authorization: `Bearer ${data.token}` } });