标签:ack turn res ade 发送 逻辑 head 根据 next
Vue.http.interceptors.push((request, next) => {
// 请求发送前的处理逻辑
request.headers.set(‘Authorization‘,"Bearer " + 想要增加的变量)
next((response) => {
// 请求发送后的处理逻辑
// 根据请求的状态,response参数会返回给successCallback或errorCallback
return response
})
})
标签:ack turn res ade 发送 逻辑 head 根据 next
原文地址:https://www.cnblogs.com/wang-xx/p/11244022.html