vue修改http请求头_vue-resouce设置请求头的三种方法
本文主要介绍了vue-resouce设置请求头的三种方法,分享给大家,具体如下:
第一种:在Vue实例中设置
var vm = new Vue({
el:'#rrapp',
data:{
showList: true,
title: null
},
http: {
root: '/',
headers: {
token: token
}
}
})
第二种:全局设置请求头
Vue.http.headers.common['token'] = 'YXBpOnBhc3N3b3Jk';
第三种:在拦截器中设置
Vue.http.interceptors.push((request, next) => {
request.headers.set('token', token); //setting request.headers
next((response) => {
return response
})
})
另附vue interceptors 设置请求头
在main.js添加过滤器,可以
Vue.http.interceptors.push((request,next)=>{
//request.credentials = true; // 接口每次请求会跨域携带cooki
原文链接:https://blog.csdn.net/weixin_36284522/article/details/112031294 标签:vue,http,请求,request,token,Vue From: https://www.cnblogs.com/sunny3158/p/17813548.html