node.js - next() 不是无法在 NodeJS 中使用生成器的函数

标签 node.js

我在 NodeJS 7.10.0 中使用以下代码:

function * gen(){
    yield 100;
    yield 200;
    yield 300
}
console.log(gen.next());

我得到这个作为返回:

TypeError: gen.next is not a function
    at Object.<anonymous> (/Files/development/learning/node-bits/generators.js:15:17)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)
    at Module.runMain (module.js:605:10)
    at run (bootstrap_node.js:427:7)
    at startup (bootstrap_node.js:151:9)
    at bootstrap_node.js:542:3

最佳答案

当你调用一个生成器函数时,它的函数体并没有被执行。相反,它会返回一个迭代器对象。当您调用 iterator.next() 时,主体将被执行,您将获得值并维护上下文。

你可以做到

let i= gen()
console.log(i.next())

您将获得所需的行为。

引用这个: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/function *

关于node.js - next() 不是无法在 NodeJS 中使用生成器的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43843747/

相关文章:

node.js - SocketIO 组

node.js - 使用 Node.js 和 Mongoose 将查询结果保存到模型/模式的属性

node.js - 无法启动 nodemon 环境

javascript - Node.js Promise 在没有被调用的情况下运行

mysql - Typeorm 插入数据,即使它存在

Node.js - 即使 req.body 不为空,POST 中的 req.on ("data"也不会被调用

node.js - 如何过滤掉多余的模型属性

javascript - 如何使用 Angular 版本 2 和 Node JS 连接到 MSSQL 数据库

node.js - 使用路由、 Controller 和模型重构 NodeJS 项目的中间件代码

node.js - 从 Node.JS 服务器应用程序中发出 GET 请求并将其发送到 React.JS 客户端