Обработка ошибок из Express API с помощью Vue - PullRequest
0 голосов
/ 17 марта 2019

У меня возникли трудности с доступом к объекту JSON, возвращенному с ошибкой 400.

Ответ от моего приложения Vue - только ошибка 400 без данных JSON.

Error: Request failed with status code 400
    at createError (createError.js?16d0:16)
    at settle (settle.js?db52:18)
    at XMLHttpRequest.handleLoad (xhr.js?ec6c:77)

Ответ от того же пользователя с помощью Почтальона возвращает код ошибки и сообщение.

Как получить доступ к ответу JSON в моем приложении Vue?

{
    "error": "Email already exists!"
}

Экспресс код API:

res.status(400).json({ error: 'Email already exists!' });

Мой код Vue:

handleSubmit () {
  this.$http.post('http://localhost:3000/users/create', this.user)
      .then(response => {
          const status = JSON.parse(response.status)
          if (status === 200) router.push('/users')
      })
      // why doesn't the json response show
      .catch(err => {
          console.log(err)
      })
}

Ответы [ 2 ]

1 голос
/ 17 марта 2019

Вы должны использовать свойство response или error объект:

handleSubmit () {
  this.$http.post('http://localhost:3000/users/create', this.user)
      .then(response => {
          // if on server side you use only status 200, here it's always true
          if (response.status=== 200) {
            router.push('/users');
          }
      })
      .catch(error => {
          // error.response can be null
          if (error.response && error.response.status === 400) {
              console.log(error.response.data.error);
          }
      })
}

См. документацию по обработке ошибок axios

0 голосов
/ 17 марта 2019

Попробуйте отправить вместо JSON?Также возможно доступ к ошибке.

BACKEND
res.status(400).send({ error: 'Email already exists!' })

FRONTEND
(err) => { console.log(err["error"]) }
...