我需要每隔一段时间自动运行一个函数,但我不知道怎么做。你能帮助我吗?非常感谢。
cwxwcias1#
使用$interval,在每指定毫秒的持续时间内执行指定的函数。
$scope.intervalFn= function () { console.log('test'); } $interval($scope.intervalFn, 500);
看这个文档,,https://docs.angularjs.org/api/ng/service/$interval
1条答案
按热度按时间cwxwcias1#
使用$interval,在每指定毫秒的持续时间内执行指定的函数。
看这个文档,,https://docs.angularjs.org/api/ng/service/$interval