vue-resource catch什么情况触发
发布网友
发布时间:2022-04-25 18:46
我来回答
共1个回答
热心网友
时间:2022-04-22 23:43
下边代码添加在main.js中
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Vue.http.interceptors.push((request, next) => {
console.log(this)//此处this为请求所在页面的Vue实例
// modify request
request.method = 'POST';//在请求之前可以进行一些预处理和配置
// continue to next interceptor
next((response) => {//在响应之后传给then之前对response进行修改和逻辑判断。对于token时候已过期的判断,就添加在此处,页面中任何一次http请求都会先调用此处方法
response.body = '...';
return response;
});