vue interceptors 设置请求头
Posted SeaJson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue interceptors 设置请求头相关的知识,希望对你有一定的参考价值。
在main.js添加过滤器,可以
Vue.http.interceptors.push((request,next)=>{ //request.credentials = true; // 接口每次请求会跨域携带cookie
//request.method= ‘POST‘; // 请求方式(get,post)
//request.headers.set(‘token‘,‘111‘) // 请求headers携带参数
next(function(response){ return response; }); })
待完善。。。
以上是关于vue interceptors 设置请求头的主要内容,如果未能解决你的问题,请参考以下文章