当前位置:   article > 正文

axios的全局配置和拦截器_html为axios配置拦截器

html为axios配置拦截器

axios(三方插件)的基本用法

axios.get/delete/put/post('url').then(function(res){console.log(ret.data)})
  • 1

注意:.then的函数形参.data是固定的写法
参数问题: axios get、delete的二参可以是params:{id:’’}形式
post、put是{uname:’’,age:’’}形式 或者是变量形式 let params = new URLSearchParams();
params.append(‘uname’,‘zs’)=>axios.post(‘url’, params)

// 全局公共的请求头 
axios.defaults.baseURL='url'
// 配置 超时时间    
axios.defaults.timeout = 2500;
// 配置请求头 
axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
// 配置公共的 post 的 Content-Type    
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
// 拦截器 
axios.interceptors.request/response.use(function(config){console.log(config)})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
main.js
axios.interceptors.request.use(config=>{
  config.headers['Authorization']=sessionStorage.getItem('token')
  return config
})

Vue.config.productionTip = false
Vue.prototype.axios=axios
axios.defaults.baseURL='http://192.168.37.99:7001'


axios.interceptors.request.use(config=>{
// console.log(config)
config.headers.Authorization = window.sessionStorage.getItem('token')
return config
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/299796
推荐阅读
相关标签
  

闽ICP备14008679号