我想要这样的功能:
export async function* iterateDir(dir: string) { let list = await fs.readdir(dir); // fs-promise implementation of readdir for (let file of list) { yield file; } }
我会用的是:
for (let file in iterateDir(dir)) { processFile(file); }
我将如何构造代码以实现相同的目标?
>如果我将await fs.readdir更改为回调,我假设外部for..of循环不会等待.
>如果我摆脱了生成器并且目录很大,则iterateDir()会很慢.
解决方法
TypeScript 2.3 –
tracked issue支持此功能
它介绍了一些新类型,特别是:
interface AsyncIterable<T> { [Symbol.asyncIterator](): AsyncIterator<T>; }
但最重要的是它还引入了等待……的
for await (const line of readLines(filePath)) { console.log(line); }
哪里
async function* readLines(path) { //await and yield ... }
请注意,如果要尝试此操作,则需要配置typescript以使其知道您具有运行时支持(将“esnext.asynciterable”添加到lib列表),您可能需要填充Symbol.asyncIterator.见TS2318: Cannot find global type ‘AsyncIterableIterator’ – async generator