這篇文章將為大家詳細(xì)講解有關(guān)Node.js 中異步迭代器如何使用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
10多年的青浦網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。營(yíng)銷型網(wǎng)站建設(shè)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整青浦建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“青浦網(wǎng)站設(shè)計(jì)”,“青浦網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
什么是異步迭代器
異步迭代器實(shí)際上是以前迭代器的異步版本。當(dāng)我們不知道迭代的值和最終狀態(tài)時(shí),可以使用異步迭代器。兩者不同的地方在于,我們得到的 promise 最終將被分解為普通的 { value: any, done: boolean } 對(duì)象,另外可以通過 for-await-of 循環(huán)來處理異步迭代器。就像 for-of 循環(huán)用于同步迭代器一樣。
const asyncIterable = [1, 2, 3]; asyncIterable[Symbol.asyncIterator] = async function*() { for (let i = 0; i < asyncIterable.length; i++) { yield { value: asyncIterable[i], done: false } } yield { done: true }; }; (async function() { for await (const part of asyncIterable) { console.log(part); } })();
與通常的 for-of 循環(huán)相反,``for-await-of` 循環(huán)將會(huì)等待它收到的每個(gè) promise 解析之后再繼續(xù)執(zhí)行下一個(gè)。
除了流之外,還在還沒有什么能夠支持異步迭代的結(jié)構(gòu),但是可以將 asyncIterator 符號(hào)手動(dòng)添加到任何一種可迭代的結(jié)構(gòu)中。
在流上使用異步迭代器
異步迭代器在處理流時(shí)非常有用。可讀流、可寫流、雙工流和轉(zhuǎn)換流上都帶有 asyncIterator 符號(hào)。
async function printFileToConsole(path) { try { const readStream = fs.createReadStream(path, { encoding: 'utf-8' }); for await (const chunk of readStream) { console.log(chunk); } console.log('EOF'); } catch(error) { console.log(error); } }
如果以這種方式寫代碼,就不需要在通過迭代獲取每個(gè)數(shù)據(jù)塊時(shí)監(jiān)聽 end 和 data 事件了,并且 for-await-of 循環(huán)會(huì)隨著流的結(jié)束而結(jié)束。
用于有分頁(yè)功能的 API
你還可以通過異步迭代從使用分頁(yè)的源中輕松獲取數(shù)據(jù)。為了實(shí)現(xiàn)這個(gè)功能,還需要一種從Node https 請(qǐng)求方法提供給的流中重構(gòu)響應(yīng)主體的方法。在這里也可以使用異步迭代器,因?yàn)?https 請(qǐng)求和響應(yīng)在 Node 中都是流:
const https = require('https'); function homebrewFetch(url) { return new Promise(async (resolve, reject) => { const req = https.get(url, async function(res) { if (res.statusCode >= 400) { return reject(new Error(`HTTP Status: ${res.statusCode}`)); } try { let body = ''; /* 代替 res.on 偵聽流中的數(shù)據(jù), 可以使用 for-await-of, 并把數(shù)據(jù)塊附加到到響應(yīng)體的剩余部分 */ for await (const chunk of res) { body += chunk; } // 處理響應(yīng)沒有響應(yīng)體的情況 if (!body) resolve({}); // 需要解析正文來獲取 json,因?yàn)樗且粋€(gè)字符串 const result = JSON.parse(body); resolve(result); } catch(error) { reject(error) } }); await req; req.end(); }); }
代碼通過向 Cat API(https://thecatapi.com/)發(fā)出請(qǐng)求,來獲取一些貓的圖片。另外還添加了 7 秒鐘的延遲防止對(duì) cat API 的訪問過與頻繁,因?yàn)槟菢邮菢O其不道德的。
function fetchCatPics({ limit, page, done }) { return homebrewFetch(`https://api.thecatapi.com/v1/images/search?limit=${limit}&page=${page}&order=DESC`) .then(body => ({ value: body, done })); } function catPics({ limit }) { return { [Symbol.asyncIterator]: async function*() { let currentPage = 0; // 5 頁(yè)后停止 while(currentPage < 5) { try { const cats = await fetchCatPics({ currentPage, limit, done: false }); console.log(`Fetched ${limit} cats`); yield cats; currentPage ++; } catch(error) { console.log('There has been an error fetching all the cats!'); console.log(error); } } } }; } (async function() { try { for await (let catPicPage of catPics({ limit: 10 })) { console.log(catPicPage); // 每次請(qǐng)求之間等待 7 秒 await new Promise(resolve => setTimeout(resolve, 7000)); } } catch(error) { console.log(error); } })()
這樣,我們就會(huì)每隔7秒鐘自動(dòng)取回一整頁(yè)的喵星人圖片。
一種更常見的頁(yè)面間導(dǎo)航的方法可實(shí)現(xiàn) next 和 previous 方法并將它們公開為控件:
function actualCatPics({ limit }) { return { [Symbol.asyncIterator]: () => { let page = 0; return { next: function() { page++; return fetchCatPics({ page, limit, done: false }); }, previous: function() { if (page > 0) { page--; return fetchCatPics({ page, limit, done: false }); } return fetchCatPics({ page: 0, limit, done: true }); } } } }; } try { const someCatPics = actualCatPics({ limit: 5 }); const { next, previous } = someCatPics[Symbol.asyncIterator](); next().then(console.log); next().then(console.log); previous().then(console.log); } catch(error) { console.log(error); }
關(guān)于Node.js 中異步迭代器如何使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。