Questo può sembrare stupido, ma sto cercando di ottenere i dati di errore quando una richiesta fallisce in Axios.
axios.get('foo.com')
.then((response) => {})
.catch((error) => {
console.log(error) //Logs a string: Error: Request failed with status code 404
})
Invece della stringa, è possibile ottenere un oggetto con forse il codice di stato e il contenuto? Per esempio:
Object = {status: 404, reason: 'Not found', body: '404 Not found'}
response
proprietà?