vue 拦截请求,添加请求头
Vue.http.interceptors.push((request, next) => {// ...// 请求发送前的处理逻辑if(token) {request.beforeSend = function() {request.headers['token'] = token.token;
·
Vue.http.interceptors.push((request, next) => { // ... // 请求发送前的处理逻辑 if(token) { request.beforeSend = function() { request.headers['token'] = token.token; } } next((response) => { // ... // 请求发送后的处理逻辑 // ... // 根据请求的状态,response参数会返回给successCallback或errorCallback return response })
原文链接:
http://www.cnblogs.com/keepfool/p/5657065.html
更多推荐
已为社区贡献1条内容
所有评论(0)