如何终止 Javascript 执行,á la 退出/死亡/致命断言等?

发布于 2024-10-21 08:35:54 字数 152 浏览 9 评论 0原文

我在 Javascript 中有一个循环,我想在特定迭代中运行 console.log(),然后终止。执行此操作的最佳方法是什么?

我想要类似 Perl 的东西

die Dumper \@foo;

I have a loop in Javascript, I want to run console.log() in a specific iteration, and then terminate. What is the best method to go about doing this?

I'm wanting something like Perl's

die Dumper \@foo;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

望笑 2024-10-28 08:35:54

您可以抛出异常:

throw "Help I have fallen and cannot get up";

不完全相同,但是(根据我的经验)在普通 DOM 争论类型的 JavaScript 代码中看到异常处理并不常见,因此通常会从任何事件循环中溢出。但是,这实际上并不是同一件事,因为任何周围的 try 块都会捕获您抛出的内容。

You can throw an exception:

throw "Help I have fallen and cannot get up";

Not exactly the same, but (in my experience) it's not too common to see exception handling in ordinary DOM-wrangling sorts of JavaScript code, so that usually will blow out of any event loop. However, it's not really the same thing as any surroundling try block will catch what you throw.

墨落画卷 2024-10-28 08:35:54

你的意思是终止循环?

while(true) {
console.log()
if(condition) {break};
}

break 命令退出循环

,但 JavaScript 中没有 killexit 函数。

you mean terminate loop?

while(true) {
console.log()
if(condition) {break};
}

the break command exits the loop

but there is no kill or exit function in javascript.

寄意 2024-10-28 08:35:54

由于 JavaScript 是基于事件的,因此脚本无法控制何时终止 - 没有 dieexit

如果还没有,最好的选择是将代码重构为一个可以返回的函数,或者使用命名块:

foo: {
    // do work
    break foo;
    // not executed;
}

Since JavaScript is event-based, a script doesn't control when it terminates — there's no die or exit.

If it's not one already, the best option is to refactor the code into a function that you can return from, or use a named block:

foo: {
    // do work
    break foo;
    // not executed;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文