gpt4 book ai didi

javascript - axios 重放请求 Promise 包括 .then()

转载 作者:行者123 更新时间:2023-11-28 04:39:34 25 4
gpt4 key购买 nike

是否可以重放 axios 请求(Promise)并执行 .then 中定义的函数?

axios.interceptors.response.use(res => return res, err => {
if(err.response.status === 401) {
// something like this, but so it would fire the .then on completion
return axios(err.config)
}
})

最佳答案

我认为您可能需要进行此配置:

  validateStatus: function validateStatus(status) {
return status >= 200 && status < 300 || status == 401;
}

然后当status为401时,可能会执行.then中定义的函数。

关于javascript - axios 重放请求 Promise 包括 .then(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43895177/

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