简体   繁体   中英

How to declare async generator function

I am trying to create async generator function in Node.js, but it seems to be impossible.

Version of my Node.js : 7.6.0.

My code :

async function* async_generator(){
  for(let i = 0; i < 10; i++){
    yield await call_to_async_func(i);
  };
}

Error I got :

在此输入图像描述

Does anyone knows what is the problem? Why I can't create async generator function while I can create generator function or async function Independently?

It is there and it does work, but currently it is behind a harmony flag.

example.js

async function* async_generator() {
  for (let i = 0; i < 10; i++) {
    yield await new Promise(r => setTimeout(_ => r("hello world"), 100))
  };
}

async function main(){
  for await (let item of async_generator()){
    console.log(item);
  }
}

main().catch(console.log);

run with (works for me in node v8.5.0)

node --harmony-async-iteration example.js

be aware that the proposal is still at stage-3 and if you want to use it in the browser you'll likely also need to transpile with typescript or babel.

update:

as of node 9, async generators are staged. You can enable it simply with --harmony .

There simply are no asynchronous generator functions.

Yet. They're still figuring out what their semantics would be, see the async iteration proposal .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM