蕪湖不蕪
2023-08-05 19:33:59
我正在使用 Axios 進(jìn)行 API 服務(wù),只是好奇是否有任何官方方法來(lái)處理我們?cè)?Ajax 調(diào)用中使用的“完整”事件。所以喜歡axios.get('/v1/api_endpoint?parameters')
.then((res) => { .. })
.catch((err) => { .. })
.complete(() => {}) // <== is there any way to handle this complete event?
2 回答

鴻蒙傳說(shuō)
TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個(gè)贊
這是一個(gè)很好的示例,說(shuō)明如何處理 axioscomplete 事件,無(wú)論成功還是失敗,該事件都將始終執(zhí)行。
axios.get('/v1/api_endpoint?with_parameters') ??.then((res)?=>?{?//?handle?success?}) ??.catch((err)?=>?{?//?handle?error?}) ??.then(()?=>?{?//?always?executed?})????????<--?this?is?the?one

拉莫斯之舞
TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超10個(gè)贊
如果您需要檢查API調(diào)用是否成功,可以使用以下代碼:
const response = await axios.post(
? ? ? "http://localhost:8000/xyz",
? ? ? { token, user }
? ? );
? ? const status = response.status
? ? if (status == 200) {
? ? ? console.log('Success')
? ? ? toast("Successful Transaction", { type: "success" });
? ? } else {
? ? ? console.log('Falure')
? ? ? toast("Falure", { type: "error" });
? ? }
您還可以用來(lái)finally
檢查事件是否完成。
添加回答
舉報(bào)
0/150
提交
取消