中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

ES6中Generator的使用方法

發布時間:2020-06-28 10:25:01 來源:億速云 閱讀:161 作者:Leah 欄目:web開發

本篇文章為大家展示了ES6中Generator的使用方法,代碼簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1.Generator介紹

先來一段Generator的基礎代碼

function* g(){
 yield 100;
 yield 200;
 return 300;
}
let gg = g();
console.log(gg);            // Object [Generator] {}
console.log(gg.next());        // { value: 100, done: false }
console.log(gg.next());        // { value: 200, done: false }
console.log(gg.next());        // { value: 300, done: true }
console.log(gg.next());        // { value: undefined, done: true }

首先我們看到:

  • Generator是由functinon*定義的,在generator內部可以使用yield

  • Generator不是函數,而是一個對象,并且在執行開始就進入暫停狀態,而不是直接執行全部操作

  • 通過next()來執行下一步操作,返回的都是{ value: xxx, done: xxx }這樣的形式,value代表上一次操作返回的值,done有兩個值,一個是true,一個是false,表示整個流程是否全部結束。

2.Generator異步編程

generator是ES6中引入的異步解決方案,我們來看看它與promise處理異步的對比,來看它們的差異。

// 這里模擬了一個異步操作
function asyncFunc(data) {
 return new Promise( resolve => {
  setTimeout(
   function() {
    resolve(data)
   },1000
  )
 })
}

promise的處理方式:

asyncFunc("abc").then( res => {
 console.log(res);                    // "abc"
 return asyncFunc("def")
}).then( res => {
 console.log(res);                    // "def"
 return asyncFunc("ghi")
}).then( res => {
 console.log(res);                    // "ghi"
})

generator的處理方式:

function* g() {
 const r1 = yield asyncFunc("abc");
 console.log(r1);                            // "abc"
 const r2 = yield asyncFunc("def");
 console.log(r2);                            // "def"
 const r3 = yield asyncFunc("ghi");
 console.log(r3);                            // "ghi"
}

let gg = g();
let r1 = gg.next();
r1.value.then(res => {
 let r2 = gg.next(res);
 r2.value.then(res => {
  let r3 = gg.next(res);
  r3.value.then(res => {
   gg.next(res)
  })
 })
})

promise多次回調顯得比較復雜,代碼也不夠簡潔,generator在異步處理上看似同步的代碼,實際是異步的操作,唯一就是在處理上會相對復雜,如果只進行一次異步操作,generator更合適。

3.yield和yield*

先來看兩段代碼

function* g1() {
 yield 100;
 yield g2();
 return 400;
}

function* g2() {
 yield 200;
 yield 300;
}

let gg = g1();
console.log(gg.next());                // { value: 100, done: false }
console.log(gg.next());                // { value: Object [Generator] {}, done: false }
console.log(gg.next());                // { value: 400, done: true }
console.log(gg.next());                // { value: undefined, done: true }
function* g1() {
 yield 100;
 yield* g2();
 return 400;
}

function* g2() {
 yield 200;
 yield 300;
}

let gg = g1();
console.log(gg.next());                // { value: 100, done: false }
console.log(gg.next());                // { value: 200, done: false }
console.log(gg.next());                // { value: 300, done: false }
console.log(gg.next());                // { value: 400, done: true }

yield對另一個generator不會進行遍歷,返回的是迭代器對象,而yield*會對generator進行遍歷迭代。

上述內容就是ES6中Generator的使用方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

宜黄县| 宁陵县| 汝城县| 富锦市| 普格县| 海门市| 南京市| 垣曲县| 北宁市| 武乡县| 绵竹市| 秦皇岛市| 罗平县| 长乐市| 固原市| 丰镇市| 永川市| 博客| 浦城县| 贞丰县| 河间市| 兴国县| 开封县| 博罗县| 荔浦县| 曲麻莱县| 阜城县| 玉屏| 景东| 察哈| 丽江市| 兴安县| 利辛县| 泗阳县| 嵊州市| 广宗县| 繁峙县| 毕节市| 滕州市| 乌什县| 临桂县|