我正在创建一个应用程序,用于轮询服务器以进行特定更改。我使用setTimeout使用自调用函数。基本上这样的东西:
<script type="text/javascript">
someFunction();
function someFunction() {
$.getScript('/some_script');
setTimeout(someFunction, 100000);
}
</script>
为了使这种轮询在服务器上不那么密集,我希望有一个更长的超时间隔;也许在1分钟到2分钟的范围内。是否存在setTimeout的超时变得太长并且不再正常工作的点?
答案 0 :(得分:6)
你在技术上还可以。如果你真的想要,你可以超时 24.8611天!!! 。 setTimeout最高可达2147483647毫秒(32位整数的最大值,大约24天),但如果高于此值,您将看到意外行为。见Why does setTimeout() "break" for large millisecond delay values?
对于间隔,如轮询,我建议使用 setInterval 而不是递归的setTimeout。 setInterval完全符合你想要的轮询,你也有更多的控制权。示例:要随时停止间隔,请确保存储setInterval的返回值,如下所示:
var guid = setInterval(function(){console.log("running");},1000) ;
//Your console will output "running" every second after above command!
clearInterval(guid)
//calling the above will stop the interval; no more console.logs!
答案 1 :(得分:2)
setTimeout()
使用32位整数作为其延迟参数。因此最大值是:
2147483647
我建议使用setInterval()
:
setTimeout()
setInterval(someFunction, 100000);
function someFunction() {
$.getScript('/some_script');
}