ES6 Generator函数

Posted jnba

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 Generator函数相关的知识,希望对你有一定的参考价值。

Generator函数是es6提供的解决异步编程的方案之一;
Generator函数是一个状态机,内部封装了不同状态的数据;

<script type="text/javascript">
    // generator定义 function后面跟个*号
    function* myGenerator(){
        console.log(‘业务逻辑A‘)
        let result=yield ‘hello‘
        console.log(result)
        console.log(‘业务逻辑B‘)
        yield ‘world‘
        console.log(‘执行完了‘)
    }

    let mg=myGenerator();
    console.log(mg.next())
    console.log(mg.next(‘hehe‘))
    console.log(mg.next())

</script>

每次执行一次next() 指针想下偏移一次,根据yield来作用;

console.log(mg.next())

console.log(mg.next())

console.log(mg.next())

 

next()返回结果 

  对应的yield值,然后done的话,只有后面还有yield,就是false;遍历完了,就是true;

  yield返回值,默认是undefined

假如需要值的话,我们next()方法里传值即可;

以上是关于ES6 Generator函数的主要内容,如果未能解决你的问题,请参考以下文章

Generator

es6Generator 函数

每天十分钟学好ES6--async和Generator是一对好基友

每天十分钟学好ES6--async和Generator是一对好基友

es6,promise,generator,next,yield与koa

ES6 Generator 学习笔记一