AXIOS版本:0.18.0 遵循规范:1.3.0
由于未定义error.response,因此无法读取。我试图获取401状态。
尝试的代码:
//拦截器
client.interceptors.response.use(this.handleSuccess.bind(this), this.handleError.bind(this))
//错误响应处理程序
handleError (error) {
if(error.response.status === 401){
this.handleLogout()
return
}
return Promise.reject(error)
}