axios封装请求拦截器中给Authorization,添加token加Bearer。


axios封装请求拦截器中给Authorization,添加token加Bearer。

main.js

// 设置请求的根路径
axios.defaults.baseURL="http://localhost:8081/api/"
axios.interceptors.request.use(config=>{
  console.log(config)
  const  token_type="Bearer"
  config.headers.Authorization =token_type+ ' '+window.sessionStorage.getItem('token')
  // 在最后必须返回config
  return config
})
Vue.prototype.$http=axios


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM