gpt4 book ai didi

javascript - 状态为400时如何在axios中获取响应主体?

转载 作者:行者123 更新时间:2023-12-05 01:27:52 24 4
gpt4 key购买 nike

<分区>

我正在开发一个应用程序,我想在用户发送时使用状态码 400无效或不完整的数据,但当 axios 收到 400 状态代码时,它会抛出错误我无法从它那里得到响应,它只是给我一个包含请求但不包含响应的错误,我应该如何处理这个问题?

const getIdTypes = () => {
return axios_instance.get
(idTypesUrl)
}


const getValidIdTypes = async () => {
return infoActions.getIdTypes()
.then(res => {
if (res.status !== 200 && res.status !== 201) {
pushToFlasher(res.data)
}
setValidIdTypes(res.data)
})
.catch(err => {
if (err.request) {
console.log("err:", err.request)
}
if (err.response) {
console.log("err:", err.response)
}
// pushToFlasher(err.response.data)
})
}


24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com