“setTimeout”在哪里?来自 Haxe 中的 JavaScript?
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 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
对于一次性执行,我认为
Timer.delay()
是完美的。您可以稍后使用返回的实例来停止计时器:您还可以使用
js.html.Window
外部:For a one-shot execution I think that
Timer.delay()
is perfect. You can use the returned instance to stop the timer later:You could also access the native
setTimeout()
with thejs.html.Window
extern: