Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to catch and log the Error response from an axios request

I am having a axios request in my react application, for which I am following the axios npm docs.

This is my axios request

 axios.post(helper.getLoginApi(), data)
        .then((response) => {
            console.log(response);

            this.props.history.push(from.pathname)
        })
        .catch((error)=> {
            console.log(error);
        })

I am able to successfully log the data on a successful request. However When I intentionally produce an error and try to console.log it, I don't get the result logged instead, I just see

POST http://localhost:3000/login 401 (Unauthorized) :3000/login:1
Error: Request failed with status code 401 login.js:66

at createError (createError.js:16)

at settle (settle.js:18)

at XMLHttpRequest.handleLoad (xhr.js:77)

However when I go to Network Tab in Chrome Console, I can see the below response returned.

enter image description here

Thanks for help in advance .

like image 644
Jagrati Avatar asked Jun 28 '17 15:06

Jagrati


People also ask

How do you handle catch error in Axios?

then(res => { // Work with the response... }). catch(err => { // Handle error console. log(err); }); Both the res and err objects are the same as with the async/await syntax.

Does Axios catch 400 error?

By default, the axios HTTP library throws an error anytime the destination server responds with a 4XX / 5XX error (for example, a 400 Bad Request ). Since axios raises an error, your workflow will stop at this step.

Does Axios throw error on 404?

By default, axios throws an error when it encounters any 4XX / 5XX status code. Adding this line overrides that default behavior. You can then check the status code yourself (in response. status ), conditionally handling the 404 as you need.

How do I get an Axios post response?

Axios Post Request The response is provided as a promise because Axios GitHub is promise-based. To obtain the response and catch any errors, we must utilize the then() and catch() functions.


1 Answers

From the Github Docs. The response of an axios request looks like

{
  // `data` is the response that was provided by the server
  data: {},

  // `status` is the HTTP status code from the server response
  status: 200,

  // `statusText` is the HTTP status message from the server response
  statusText: 'OK',

  // `headers` the headers that the server responded with
  // All header names are lower cased
  headers: {},

  // `config` is the config that was provided to `axios` for the request
  config: {},

  // `request` is the request that generated this response
  // It is the last ClientRequest instance in node.js (in redirects)
  // and an XMLHttpRequest instance the browser
  request: {}
}

So essentially catch(error => ) is actually just catch(response => )

and so you can log error.response.data and you should be able to see your response message.

When you log console.log(error), what you see is the string returned by the toString method on the error object.

According to the error handling section on the same docs, you can have the catch the error response like

axios.post(helper.getLoginApi(), data)
        .then((response) => {
            console.log(response);

            this.props.history.push(from.pathname)
        })
        .catch((error)=> {
            if (error.response) {
              // The request was made and the server responded with a status code
              // that falls out of the range of 2xx
              console.log(error.response.data);
              console.log(error.response.status);
              console.log(error.response.headers);
            } else if (error.request) {
              // The request was made but no response was received
              // `error.request` is an instance of XMLHttpRequest in the browser and an instance of
              // http.ClientRequest in node.js
              console.log(error.request);
            } else {
              // Something happened in setting up the request that triggered an Error
              console.log('Error', error.message);
            }
        })
like image 125
Shubham Khatri Avatar answered Sep 17 '22 01:09

Shubham Khatri