世界上最伟大的投资就是投资自己的教育
-
不应该直接通过 headers 配置的方式来注入 token,因为这个是配置代码,只会运行一次
要使用拦截器,这样每次 request 请求时都会去执行
requestInterceptors : [(url: string, options: any) => {
const authHeader = { Authorization:Bearer ${localStorage.getItem('token')}
};
return {
options: { ...options, interceptors: true, headers: authHeader },
}
}],
© 汕尾市求知科技有限公司 | Rails365 Gitlab | 知乎 | b 站 | csdn
粤公网安备 44152102000088号 | 粤ICP备19038915号
Top