“setTimeout”在哪里?来自 Haxe 中的 JavaScript?

发布于 12-07 03:50 字数 113 浏览 1 评论 0原文

Haxe 中是否有 setTimeout()clearTimeout() 的实现? 当然可以使用 Timer 类,但对于一次性执行,我想这不是最好的方法。

Is there an implementation of setTimeout() and clearTimeout() in Haxe?
It's of course possible to use the Timer class, but for a one-shot execution it's not the best way, I guess.

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

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

发布评论

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

评论(2

蓦然回首2024-12-14 03:50:50

对于一次性执行,我认为 Timer.delay()是完美的。您可以稍后使用返回的实例来停止计时器:

var timer = haxe.Timer.delay(function() trace("Hello World!"), 250);
...
timer.stop();

您还可以使用 js.html.Window 外部:

var handle = js.Browser.window.setTimeout(function() trace("Hello World!"), 250);
...
js.Browser.window.clearTimeout(handle);

For a one-shot execution I think that Timer.delay() is perfect. You can use the returned instance to stop the timer later:

var timer = haxe.Timer.delay(function() trace("Hello World!"), 250);
...
timer.stop();

You could also access the native setTimeout() with the js.html.Window extern:

var handle = js.Browser.window.setTimeout(function() trace("Hello World!"), 250);
...
js.Browser.window.clearTimeout(handle);
二货你真萌2024-12-14 03:50:50

如果您使用 框架:

Kha修改haxe.Timer来调用kha.Scheduler,它最终不会通过setTimeout获取时间戳 - 它通过以下方式获取这些requestAnimationFrame()

当选项卡处于非活动状态时,这似乎不起作用,因此当选项卡处于非活动状态时,它的功能不同。

我正在尝试一种解决方法,但目前,它没有给出与本机 setTimeout()-JS 相同的结果(尽管我找到了一种解决方法,我将提供该解决方法以供包含) 。

In case you're using the framework:

Kha modifies haxe.Timer to call kha.Scheduler, which in the end doesn't get the timestamps via setTimeout - it gets these via requestAnimationFrame().

This seems to not work while a tab is inactive, so it's not the same function while the tab is inactive.

I'm attempting a workaround, but at the moment, it doesn't give the same result as a native setTimeout()-JS does (although I found a workaround which I'll present for inclusion).

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