第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

axios 完成事件

axios 完成事件

蕪湖不蕪 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


查看完整回答
反對(duì) 回復(fù) 2023-08-05
?
拉莫斯之舞

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檢查事件是否完成。

查看完整回答
反對(duì) 回復(fù) 2023-08-05
  • 2 回答
  • 0 關(guān)注
  • 238 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)