溫馨提示×

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

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

JavaScript中Generator函數(shù)有什么用

發(fā)布時(shí)間:2020-12-02 13:51:19 來(lái)源:億速云 閱讀:433 作者:小新 欄目:web開(kāi)發(fā)

這篇文章給大家分享的是有關(guān)JavaScript中Generator函數(shù)有什么用的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。

Generator函數(shù)的定義

在阮一峰老師的書(shū)中的說(shuō)法是:  
Generator 函數(shù)有多種理解角度。語(yǔ)法上,首先可以把它理解成,Generator 函數(shù)是一個(gè)狀態(tài)機(jī),封裝了多個(gè)內(nèi)部狀態(tài)。執(zhí)行 Generator 函數(shù)會(huì)返回一個(gè)遍歷器對(duì)象,也就是說(shuō),Generator 函數(shù)除了狀態(tài)機(jī),還是一個(gè)遍歷器對(duì)象生成函數(shù)。返回的遍歷器對(duì)象,可以依次遍歷 Generator 函數(shù)內(nèi)部的每一個(gè)狀態(tài)。

我的理解:  
生成器函數(shù)可以理解為: 函數(shù)內(nèi)部是由多個(gè)小函數(shù)組成的, 使用yield關(guān)鍵字將函數(shù)內(nèi)部 分割成多個(gè)塊區(qū)域; 并且當(dāng)函數(shù)執(zhí)行時(shí), 遇到y(tǒng)ield就會(huì)停止, 并且將yield 后面的表達(dá)式結(jié)果輸出(當(dāng)然外部要調(diào)用next()方法); 下次再調(diào)用next()方法時(shí), 就從上一個(gè)停止的地方開(kāi)始執(zhí)行(這意味著函數(shù)有有記憶功能); 如果下面沒(méi)有再遇到y(tǒng)ield的話(huà) 就像普通函數(shù)執(zhí)行完. 函數(shù)的返回值是一個(gè)可迭代對(duì)象(遍歷器對(duì)象); 我喜歡叫可迭代對(duì)象, 或者說(shuō)可遍歷對(duì)象...

說(shuō)一說(shuō)可迭代對(duì)象(iterator)的next()方法

function CreateIterator(iterator) {
    // 定義一個(gè)初始下標(biāo)用來(lái)判斷
    let nextIndex = 0;

    // 返回對(duì)象: 包含的next方法, 
    return {
        next: function () {
            // 返回一個(gè)對(duì)象: value是當(dāng)前對(duì)象下標(biāo)對(duì)應(yīng)的值, done是是否遍歷完成
            return nextIndex < iterator.length ?
                // i++ 先參數(shù)運(yùn)算在 自增1 
                {value: iterator[nextIndex++], done: false} :
                {value: undefined, done: true};
        }
    }
}
// 實(shí)例化一個(gè)遍歷器
let iter1 = CreateIterator([1,2,3,4,5]);
console.log(iter1); // 一個(gè)具有next方法的對(duì)象
console.log(iter1.next().value); // 1
console.log(iter1.next().value); // 2
console.log(iter1.next().value); // 3
console.log(iter1.next().value); // 4
console.log(iter1.next().value); // 5
console.log(iter1.next().value); // undefined

生成器函數(shù)的使用

generator生成器函數(shù)的使用:
function *fn() {
    代碼1; 
    yield; 
    代碼2;
}
普通函數(shù): 執(zhí)行到底
生成器函數(shù): 遇到y(tǒng)ield會(huì)暫停,交出執(zhí)行權(quán),下次執(zhí)行從上次的停止的位置繼續(xù)
生成器函數(shù)返回值為: 生成器對(duì)象
生成器對(duì)象.next()方法才能執(zhí)行 函數(shù)體中的代碼
// 可以解決函數(shù)回調(diào)嵌套的問(wèn)題; 解決耗時(shí)操作
function *func() {
    // 請(qǐng)求數(shù)據(jù).
    // yield ajax() 
    // 處理數(shù)據(jù)
} 
// generator函數(shù)本質(zhì)上 分割成多個(gè)小函數(shù)來(lái)執(zhí)行... yield關(guān)鍵字前后
// 遇到y(tǒng)ield就暫停; 沒(méi)有就往下執(zhí)行...
// yield 起到了 暫停函數(shù)執(zhí)行的作用

關(guān)于yield關(guān)鍵字的理解

yield傳值

JavaScript中Generator函數(shù)有什么用

yield輸出值

JavaScript中Generator函數(shù)有什么用

舉個(gè)栗子:

     function *g2(x, y) {        
    let sum = x+y;
    yield sum; // sum是第一個(gè)輸出結(jié)果
        
    let agv = sum / 2;
    yield agv; // agv 是第二個(gè)輸出的結(jié)果
    
    return {"和": sum, "平均數(shù)": agv}; // 最后一個(gè)結(jié)果
}
    
let gg2 = g2(100, 20);        
console.log(gg2.next().value);  // 120
console.log(gg2.next().value);  // 60
console.log(gg2.next().value);  // { '和': 120, '平均數(shù)': 60 }

Generator的應(yīng)用

這里只做一個(gè)簡(jiǎn)單舉例, 像我們平時(shí)使用的ES7中的 async 函數(shù); 他就是生成器函數(shù)的一種應(yīng)用; 它其實(shí)是 Generator 函數(shù)的語(yǔ)法糖。

借用ES6入門(mén)中的一個(gè)例子: 兩種方式去讀取文件

const fs = require('fs');

const readFile = function (fileName) {
  return new Promise(function (resolve, reject) {
    fs.readFile(fileName, function(error, data) {
      if (error) return reject(error);
      resolve(data);
    });
  });
};

// 1.使用生成器函數(shù) 讀取文件
const gen = function* () {
  const f1 = yield readFile(__dirname + '/first.json');
  const f2 = yield readFile(__dirname + '/second.json');

  console.log(f1.toString());  // 沒(méi)有輸出; 因?yàn)?f1 拿到是一個(gè) Iterator 對(duì)象 
  console.log(f2.toString());
};

// 使用 async + await 讀取; 注意兩種需配合使用
const asyncReadFile = async function () {
    const f1 = await readFile(__dirname + '/first.json');
    const f2 = await readFile(__dirname + '/second.json');

    console.log(f1.toString());  //async函數(shù)的返回值是 Promise 對(duì)象
    console.log(f2.toString());
};

gen(); // 沒(méi)有值, 需要用 next()方法去取值
asyncReadFile() // 返回值 {"hello": "first"} {"hello": "second"}

所以; 我們這里對(duì)比一下; async函數(shù)是將 Generator 函數(shù)的星號(hào)(*)替換成async,將yield替換成await,大大方便了我們的使用。

平時(shí)的異步代碼 我們就可以使用 async + await的形式來(lái)實(shí)現(xiàn)...
比如vue中的一個(gè)ajax請(qǐng)求去獲取數(shù)據(jù)

methods: {
    async getApi() {
        let res = await axios.get('url')
        // 這里的執(zhí)行順序是同步的...
        console.log(res)
    }
}

感謝各位的閱讀!關(guān)于JavaScript中Generator函數(shù)有什么用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

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

AI