溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Fetch怎么實現(xiàn)超時設(shè)置與終止請求

發(fā)布時間:2021-05-25 17:41:51 來源:億速云 閱讀:159 作者:Leah 欄目:web開發(fā)

使用Fetch怎么實現(xiàn)超時設(shè)置與終止請求?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1.基本使用

Fetch 是一個新的端獲取資源的接口,用于替換笨重繁瑣XMLHttpRequest.它有了Request 和 Response 以及Headers對象的概念,與后端語言請求資源更接近。

一個簡單的GET請求

fetch('https://www.baidu.com')
  .then(resp=>resp.text()) // 轉(zhuǎn)換成文本對象
  .then(resp=>console.log(resp)) // 輸出請求內(nèi)容
  .catch(error => console.error(error));

一個簡單的POST請求

fetch('https://www.easy-mock.com/mock/5ca59ba44ba86c23d507bd40/example/getUser',{method:"post"})
  .then(resp=>resp.json()) //轉(zhuǎn)換成Json對象
  .then(resp=>console.log(resp)) //輸出Json內(nèi)容
  .catch(error => console.error(error));

更多Fetch相關(guān)詳細,可查看MDN文檔 developer.mozilla.org/en-US/docs/…

2.超時設(shè)置

在使用XMLHttpRequest可以設(shè)置請求超時時間,可是轉(zhuǎn)用Fetch后,超時時間設(shè)置不見了,在網(wǎng)絡(luò)不可靠的情況下,超時設(shè)置往往很有用

ES6以后Promise 出現(xiàn)解決地獄回調(diào)等不優(yōu)雅的代碼風格。個人理解這個更像是一個生產(chǎn)者和消費者的關(guān)系,查看 Promise文檔,有以下兩個方法

  1. Promise.race([promise1,promise2]) 傳入多個Promise對象,等待最快對象完成

  2. Promise.all([promise1,promise2]) 傳入多個Promise 對象,等待所有對象完成

有了以上知識后,結(jié)合函數(shù)setTimeout就可以實現(xiàn)超時設(shè)置

//ahutor:herbert qq:464884492
let timeoutPromise = (timeout) => {
 return new Promise((resolve, reject) => {
  setTimeout(() => {
   resolve("我是 timeoutPromise,已經(jīng)完成了");
  }, timeout);
 });
}
let requestPromise = (url) => {
 return fetch(url);
};
Promise.race([timeoutPromise(1000), requestPromise("https://www.baidu.com")])
 .then(resp => {
  console.log(resp);
 })
 .catch(error => {
  console.log(error);
 });

3.取消請求

將上邊的代碼拷貝的瀏覽器控制臺并將network設(shè)置為Slow3G。運行就會發(fā)現(xiàn),雖然我們在控制臺看到了超時信息,但切換到netwok頁簽中發(fā)現(xiàn)請求依然正常進行中,并返回了正確的內(nèi)容。這并不是我想要的結(jié)果,我希望超時時間到了,請求也應(yīng)該終止。

fetch請求成功后,默認返回一個Response對象,那么我們?nèi)绾卧诖a中構(gòu)造一個這樣的對象呢?

 timeoutResp=new Response("timeout", { status: 504, statusText: "timeout " })
 successResp=new Response("ok", { status: 200, statusText: "ok " })

AbortController 用于手動終止一個或多個DOM請求,通過該對象的AbortSignal注入的Fetch的請求中。所以需要完美實現(xiàn)timeout功能加上這個就對了

//ahutor:herbert qq:464884492
let controller = new AbortController();
let signal = controller.signal;

let timeoutPromise = (timeout) => {
 return new Promise((resolve, reject) => {
  setTimeout(() => {
   resolve(new Response("timeout", { status: 504, statusText: "timeout " }));
   controller.abort();
  }, timeout);
 });
}
let requestPromise = (url) => {
 return fetch(url, {
  signal: signal
 });
};
Promise.race([timeoutPromise(1000), requestPromise("https://www.baidu.com")])
 .then(resp => {
  console.log(resp);
 })
 .catch(error => {
  console.log(error);
 });

關(guān)于使用Fetch怎么實現(xiàn)超時設(shè)置與終止請求問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI