这可能看起来很愚蠢,但是当Axios中的请求失败时,我尝试
获取错误数据.
axios.get('foo.com')
.then((response) => {})
.catch((error) => {
console.log(error) //Logs a string: Error: Request Failed with status code 404
})
而不是字符串,是否可能获得一个可能有状态代码和内容的对象?例如:
Object = {status: 404,reason: 'Not found',body: '404 Not found'}