怎么把token加入到http头部啊?

怎么把token加入到http头部啊,在这里可以实现吗?
  $axios.onRequest((config) => {    if (!config.headers.common) {      config.headers.common = {};
    }    config.headers.common.token = config.headers.common.Authorization || '';    return config;
  });


https://img4.mukewang.com/5ba8a3e20001793708000302.jpg

慕尼黑8549860
浏览 4888回答 1
1回答

人到中年有点甜

service.interceptors.request.use(config => {   // Do something before request is sent  if (store.getters.token) {     config.headers['键'] = store.getters.token;    }  return config; }, error => {   // Do something with request error   //console.log(error); // for debug   Promise.reject(error); })
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript