javascript - axios 如何统一处理同个类型错误?
巴扎黑
巴扎黑 2017-05-19 10:10:54
0
1
574
// interceptors
axios.interceptors.response.use(function (response) {
    return response;
  }, function (error) {
    // 处理统一的验证失效错误.
    return Promise.reject(error);
  });

// 页面中
axios.post('/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })
  .then(function (response) {
    console.log(response);
  }, function (err) {
    // 在此处处理特定业务错误: 
    console.log(err.msg)
    // 问题是: 当我在拦截器里处理了验证失效后, 它还是会执行到这里面
  })

我的问题是: 我在拦截器里处理完验证错误之后, 如何不让页面中单独的业务处理执行 ?

巴扎黑
巴扎黑

全部回复(1)
曾经蜡笔没有小新

业务逻辑应该在 then()里面吧?
err 里面处理错误

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板