gpt4 book ai didi

javascript - Axios 完成事件

转载 作者:行者123 更新时间:2023-12-04 08:35:22 25 4
gpt4 key购买 nike

我正在将 Axios 用于 API 服务,只是想知道是否有任何官方方法来处理我们在 Ajax 调用中使用的“完成”事件。

很喜欢

axios.get('/v1/api_endpoint?parameters')
.then((res) => { .. })
.catch((err) => { .. })
.complete(() => {}) // <== is there any way to handle this complete event?

最佳答案

按照 axios 文档 here ,第二个 .then() 就是我要找的那个。

这是一个很好的例子,说明如何处理 axios 完成事件,无论它成功还是失败,它都会被执行。

axios.get('/v1/api_endpoint?with_parameters')
.then((res) => { // handle success })
.catch((err) => { // handle error })
.then(() => { // always executed }) <-- this is the one

关于javascript - Axios 完成事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64825590/

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