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

前端 未结 1 1423
终归单人心
终归单人心 2020-12-05 22:06

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.p         


        
相关标签:
1条回答
  • 2020-12-05 22:23

    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);
                }
            })
    
    0 讨论(0)
提交回复
热议问题