Bu aptalca görünebilir, ancak Axios'ta bir istek başarısız olduğunda hata verilerini almaya çalışıyorum.
axios.get('foo.com')
.then((response) => {})
.catch((error) => {
console.log(error) //Logs a string: Error: Request failed with status code 404
})
Dize yerine, belki durum kodu ve içeriğe sahip bir nesne elde etmek mümkün müdür? Örneğin:
Object = {status: 404, reason: 'Not found', body: '404 Not found'}
response
misin?