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; }); })
待完善。。。