响应拦截器会在响应接收完毕,在对应请求处理前被拦截器拦截。 响应拦截器参数 response 中保存了响应的信息。 // Axios 官⽅⽂档:响应拦截器 // Add a response interceptor axios.interceptors.response.use(function (response) { // Any status code that lie within the range of 2xx cause this function to trigger // Do something with response data return response; }, function (error) { // Any status codes that falls outside the range of 2xx cause t his function to trigger // Do something with response error return Promise.reject(error); }); 将响应拦截器设置到 utils/request.js 中,将 axios 更改为创建的 request(注意去除所有分号) error 需要通过 console.dir() 输出。 // utils/request.js // 设置响应拦截器 request.interceptors.response.use(function (response) { // 状态码为 2xx 都会进⼊这⾥ console.log(‘请求响应成功了:’, response) return response }, function (error) { // 超出 2xx 都会进⼊这⾥ console.dir(error) return Promise.reject(error) }) export default request