赞
踩
直接在main.js加axios拦截,通过localstorage或sessionstorage获取到的token值加进headers
axios.interceptors.request.use(config => {
if (window.localStorage.getItem('token')) {
console.log(config)
//判断token是否存在
config.headers.Authorization = window.localStorage.getItem('token'); //将token设置成请求头
}
return config;
});
图片上传的upload请求头还不携带token,后端获取token为null
需要在
<upload :???>加上请求头携带
<upload :headers='headersObj'>
script里面data返回
headersObj:{
Authorization:window.localStorage.getItem('token')
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。