异步迭代- 读es2018-2019

2018-10-20  本文已影响77人  aliyu

前言

在ES6 中,JS拥有了内部对同步迭代数据的支持, 这篇文章主要的是介绍异步迭代Asynchronous iteration

异步迭代

实现

for-await-of

async function f(){
  for await(const x of createAsyncIterable(['a','b'])){
    console.log(x);
  }
}

返回值

每次调用next()方法, 返回值是类似·Promise.resolve({ value: 123, done: false })的结构

Promise.all()Asynchronous iteration对比

for (const x of await Promise.all(syncIterableOverPromises));
for await (const x of syncIterableOverPromises);

第二种写法会更快, 因为第一种写法必须等Promise.all()执行完成,才会去执行for语句块的内容, 但是 for-wait-of,只要promise里面的第一项执行完成,就会去执行for语句块的内容

异步生成器

示例

async function* createAsyncIterable(syncIterable) {
    for (const elem of syncIterable) {
        yield elem;
    }
}

注意:

在异步生成器async generator中使用await

在异步生成器中可以使用 await 和 for-await-of, 例如

async function* prefixLines(asyncIterable) {
    for await (const line of asyncIterable) {
        yield '> ' + line;
    }
}

在异步生成器中使用 yield*

基本上和一般的generater一样,不过yield后面的计算对象如果是同步的东东,会自动会转成异步的,就像使用了for-await-of 一样

async function* gen1() {
    yield 'a';
    yield 'b';
    return 2;
}
async function* gen2() {
    const result = yield* gen1(); // (A)
        // result === 2
}

异步生成器的相关规定

异步生成器总共涉及以下的几个概念:

异步生成器的内部原理

两个异步生成器函数内部的属性

管理队列主要是通过下列两个操作

上一篇下一篇

猜你喜欢

热点阅读