node.js定时器timers入门例子

发布时间:2019-08-28编辑:脚本学堂
有关node.js定时器timers入门教程,node.js定时器timers的用法分享,需要的朋友参考下。

node.js定时器timers:
 

setTimeout(callback, delay, [arg], [...])
clearTimeout(timeoutId)
setInterval(callback, delay, [arg], [...])
clearInterval(intervalId)

Timers
setTimeout(callback, delay, [arg], [...])
在delay毫秒后执行一次回调函数(callback)。返回一个定时器id(timeoutId),此定时器id可用于clearTimeout()。可以选择传递到回调函数。

提示:
回调函数在delay毫秒内很可能不能调用。
Node.js不保证回调函数激活的执行时间,此时也不能安排其他事情。
回调函数将在靠近设置的延时时间调用。
clearTimeout(timeoutId)
阻止停止目标timeout的执行。

上两个函数与actionscript中的setTimeout和clearTimeout功能相同。
setInterval(callback, delay, [arg], [...])

计划在重复执行回调函数,时间间隔为delay毫秒。返回一个clearInterval()可用的intervalId。

可以选择设置回调函数的参数。
clearInterval(intervalId)
停止setInterval()