javascript – 如何在间隔结束后调用函数?

前端之家收集整理的这篇文章主要介绍了javascript – 如何在间隔结束后调用函数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个$interval,调用了一定次数.

间隔运行完毕后,我想让它调用最终的复位功能.我怎样才能做到这一点?

即.

  $scope.clickme = function() {
    var i = 0;

    function lerp() {
      alert(i++);
    }

    function fin(){    //how do I call this function? 
        alert ("all done!")
    }

    $interval(lerp,500,5);
  };

JSFiddle:http://jsfiddle.net/h4cn32e6/1/

最佳答案

The return value of registering an interval function is a promise. This promise will be notified upon each tick of the interval,and will be resolved after count iterations

所以:

$interval(lerp,5).then(fin);
原文链接:https://www.f2er.com/js/428967.html

猜你在找的JavaScript相关文章