我正在使用 Axios 进行 API 服务,只是好奇是否有任何官方方法来处理我们在 Ajax 调用中使用的“完整”事件。
所以喜欢
axios.get('/v1/api_endpoint?parameters')
.then((res) => { .. })
.catch((err) => { .. })
.complete(() => {}) // <== is there any way to handle this complete event?
芜湖不芜
浏览 192回答 2
2回答
鸿蒙传说
这是一个很好的示例,说明如何处理 axioscomplete 事件,无论成功还是失败,该事件都将始终执行。axios.get('/v1/api_endpoint?with_parameters')
.then((res) => { // handle success })
.catch((err) => { // handle error })
.then(() => { // always executed }) <-- this is the one