gpt4 book ai didi

javascript - (为什么)我不能从生成器中抛出异常吗?

转载 作者:数据小太阳 更新时间:2023-10-29 06:01:30 26 4
gpt4 key购买 nike

我试图从 ES6 生成器函数的主体中抛出异常,但它没有通过。这是 ES6 规范的一部分还是 Babel 的怪癖?

这是我试过的代码(on babeljs.io):

function *gen() {
throw new Error('x');
}

try {
gen();
console.log('not throwing');
} catch(e) {
console.log('throwing');
}

如果这确实是指定的 ES6 行为,那么发出异常信号的替代方法是什么?

最佳答案

您创建了一个迭代器但没有运行它。

var g = gen();
g.next(); // throws 'x'

( on babel repl )

这是另一个例子:

function *gen() {
for (let i=0; i<10; i++) {
yield i;
if (i >= 5)
throw new Error('x');
}
}

try {
for (n of gen())
console.log(n); // will throw after `5`
console.log('not throwing');
} catch(e) {
console.log('throwing', e);
}

关于javascript - (为什么)我不能从生成器中抛出异常吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29319492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com