【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进行遍历迭代。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值