最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Pass error after catch on promises - Stack Overflow

programmeradmin0浏览0评论

Hi I'm new so sorry if my question does not formulate properly.

I want to define a promise from axios js in a global function. Here I want to handle / catch the 401 status globally and logout the user. I do not want to handle it in every single query.

Here my source global function to handle a request:

export function requestData (url, payload = {}) {
  return axios.post(url, payload)
    .then(response => {
      return response.data
    })
    .catch(error => {
      if (error.response.status === 401) {
        logout()
      } else {
        return error
      }
    })
}

And here a example function I use on a controller:

requestData('/api/persons', {options: this.options, search: search})
  .then(data => {
    this.data = data
  })
  .catch(error => {
    this.error = error.toString()
  })

My Problem is that the promise catch in my controller will not fire when there is an exception. How to realize this?

Hi I'm new so sorry if my question does not formulate properly.

I want to define a promise from axios js in a global function. Here I want to handle / catch the 401 status globally and logout the user. I do not want to handle it in every single query.

Here my source global function to handle a request:

export function requestData (url, payload = {}) {
  return axios.post(url, payload)
    .then(response => {
      return response.data
    })
    .catch(error => {
      if (error.response.status === 401) {
        logout()
      } else {
        return error
      }
    })
}

And here a example function I use on a controller:

requestData('/api/persons', {options: this.options, search: search})
  .then(data => {
    this.data = data
  })
  .catch(error => {
    this.error = error.toString()
  })

My Problem is that the promise catch in my controller will not fire when there is an exception. How to realize this?

Share Improve this question asked Oct 27, 2017 at 16:27 user8844609user8844609 0
Add a ment  | 

3 Answers 3

Reset to default 5

change return error in your requestData function to throw error

As per the Axios docs

You can intercept requests or responses before they are handled by then or catch.

You're going to want to use the Response Interceptor:

axios.interceptors.response.use(function(response) {
  // Do something with response data
  return response;
}, function(error) {
  // Do something with response error
  if (error.status === 401) {
    logout()
  }
  return Promise.reject(error);
});

Replacing return error by throw error is the half work.
When I'm right the throw error in promise catch will not invoke the next promise .catch statement. This will work in the .then statement.

This way it should work:

export function requestData (url, payload = {}) {
  return axios.post(url, payload)
    .then(response => {
      return response.data
    })
    .catch(error => {
      if (error.response.status === 401) {
        logout()
      } else {
        return error
      }
    })
   .then(result => {
      if (result instanceof Error) {
        throw result
      } else {
        return result
      }
    })
}
发布评论

评论列表(0)

  1. 暂无评论