как обработать сообщение об ошибке 500 с помощью axios - PullRequest
0 голосов
/ 13 июня 2019

Я не могу получить текст ответа в 500 error с аксиосами.

на вкладке Сеть в инструментах разработчика я могу найти сообщение об ошибке, подобное этому

{"Message":"500 error message 0","Code":0,"Type":"error"}

и я использую

axios()
.then(function(done) {
   //fine and can get done.data
})
.catch(function(error) {
    console.log(error.message);
}); 

но я могу получить только

Request failed with status code 500

так как я могу получить текст ответа с помощью axios

1 Ответ

0 голосов
/ 13 июня 2019

в соответствии с axios readme :

axios.get('/user/12345')
  .catch(function (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);
    }
    console.log(error.config);
  });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...