Answers:
如果您不在乎内的代码是否timer
可能花费比您的间隔更长的时间,请使用setInterval()
:
setInterval(function, delay)
一遍又一遍地触发作为第一个参数传入的函数。
更好的方法是setTimeout
与self-executing anonymous
函数一起使用:
(function(){
// do some stuff
setTimeout(arguments.callee, 60000);
})();
这样可以确保在执行代码之前不会进行下一个调用。arguments.callee
在本示例中,我将其用作函数参考。这是给函数命名并在其中调用的更好方法,setTimeout
因为arguments.callee
在ecmascript 5中已弃用。
clearInterval()
是您的伙伴函数,setInterval()
如果您想停止定期函数调用,它会派上用场。
更好地利用jAndy的答案来实现轮询功能,该功能每秒钟轮询一次interval
,并在timeout
几秒钟后结束。
function pollFunc(fn, timeout, interval) {
var startTime = (new Date()).getTime();
interval = interval || 1000;
(function p() {
fn();
if (((new Date).getTime() - startTime ) <= timeout) {
setTimeout(p, interval);
}
})();
}
pollFunc(sendHeartBeat, 60000, 1000);
更新
根据评论,对其进行更新以使传递的函数能够停止轮询:
function pollFunc(fn, timeout, interval) {
var startTime = (new Date()).getTime();
interval = interval || 1000,
canPoll = true;
(function p() {
canPoll = ((new Date).getTime() - startTime ) <= timeout;
if (!fn() && canPoll) { // ensures the function exucutes
setTimeout(p, interval);
}
})();
}
pollFunc(sendHeartBeat, 60000, 1000);
function sendHeartBeat(params) {
...
...
if (receivedData) {
// no need to execute further
return true; // or false, change the IIFE inside condition accordingly.
}
}
sendHeartBeat
?
interval
并timeout
以毫秒为单位,不是吗?
在jQuery中,您可以这样做。
function random_no(){
var ran=Math.random();
jQuery('#random_no_container').html(ran);
}
window.setInterval(function(){
/// call your function here
random_no();
}, 6000); // Change Interval here to test. For eg: 5000 for 5 sec
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="random_no_container">
Hello. Here you can see random numbers after every 6 sec
</div>
// Change Interval here to test. For eg: 5000 for 5 sec
当前设置为每6秒更改一次。一分钟使用价值60000
每2秒钟连续调用Javascript函数10秒钟。
var intervalPromise; $scope.startTimer = function(fn, delay, timeoutTime) { intervalPromise = $interval(function() { fn(); var currentTime = new Date().getTime() - $scope.startTime; if (currentTime > timeoutTime){ $interval.cancel(intervalPromise); } }, delay); }; $scope.startTimer(hello, 2000, 10000); hello(){ console.log("hello"); }
// example:
// checkEach(1000, () => {
// if(!canIDoWorkNow()) {
// return true // try again after 1 second
// }
//
// doWork()
// })
export function checkEach(milliseconds, fn) {
const timer = setInterval(
() => {
try {
const retry = fn()
if (retry !== true) {
clearInterval(timer)
}
} catch (e) {
clearInterval(timer)
throw e
}
},
milliseconds
)
}
function random(number) {
return Math.floor(Math.random() * (number+1));
}
setInterval(() => {
const rndCol = 'rgb(' + random(255) + ',' + random(255) + ',' + random(255) + ')';//rgb value (0-255,0-255,0-255)
document.body.style.backgroundColor = rndCol;
}, 1000);
<script src="test.js"></script>
it changes background color in every 1 second (written as 1000 in JS)
在这里,我们使用setInterval()控制台自然数0到...... n(每60秒在控制台中打印下一个数字)。
var count = 0;
function abc(){
count ++;
console.log(count);
}
setInterval(abc,60*1000);
有两种方法可以致电:
setInterval(function (){ functionName();}, 60000);
setInterval(functionName, 60000);
以上功能将每60秒调用一次。