赞
踩
axios.get/delete/put/post('url').then(function(res){console.log(ret.data)})
注意:.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)})
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
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。