在 angularjs 工厂中使用 setInterval

IT技术 javascript angularjs javascript-framework
2021-02-07 11:55:49

我正在尝试 angularjs 文档中给出的代码(在此处给出:http : //jsfiddle.net/zGqB8/)它只是实现了一个时间工厂并使用 $timeout 每秒更新时间对象。

angular.module('timeApp', [])
.factory('time', function($timeout) {
    var time = {};

    (function tick () {
        time.now = new Date().toString();
        $timeout(tick, 1000);  // how to do it using setInterval() ?
    })();

    return time;
});

我将如何使用 setInterval() 函数而不是 $timeout() 来做到这一点?我知道需要使用scope.$apply()Angular 执行上下文,但这在工厂函数中如何工作?我的意思是,在控制器中,我们有一个范围,但我们在工厂函数中没有范围?

4个回答

您可以$timeout用作间隔。

var myIntervalFunction = function() {
    cancelRefresh = $timeout(function myFunction() {
        // do something
        cancelRefresh = $timeout(myIntervalFunction, 60000);
    },60000);
};

如果视图被销毁,您可以通过监听来销毁它$destroy

$scope.$on('$destroy', function(e) {
        $timeout.cancel(cancelRefresh);
});
@TylerForsythe 你是对的,我已经恢复了一个错误地重命名myFunctionmyIntervalFunction. 然而,堆栈溢出没有问题,因为每个$timeout都不是递归调用,而是推迟将使用新调用堆栈执行的提供函数的执行。
2021-03-18 11:55:49
我知道。目前,angular 中没有 setInterval 替代方案。模拟它的唯一方法是递归调用自身的 $timeout 函数。
2021-03-20 11:55:49
@LeblancMeneses:这里没有递归,所以不会有任何堆栈溢出。
2021-03-21 11:55:49
让我们看看在我开始收到 stackoverflow 异常之前它持续了多长时间
2021-03-25 11:55:49
我猜你误解了这个问题。JS 的 setInterval() 函数会重复调用一个函数。
2021-03-30 11:55:49

更新

Angular 在 1.2 版中实现了 $interval 功能 - http://docs.angularjs.org/api/ng.$interval


下面的旧版示例,除非您使用的版本早于 1.2,否则请忽略。

Angular 中的 setInterval 实现 -

我创建了一个名为 timeFunctions 的工厂,它公开了 $setInterval 和 $clearInterval。

请注意,任何时候我需要修改工厂中的范围时,我都会将其传入。我不确定这是否符合“Angular 方式”的做事方式,但它运行良好。

app.factory('timeFunctions', [

  "$timeout",

  function timeFunctions($timeout) {
    var _intervals = {}, _intervalUID = 1;

    return {

      $setInterval: function(operation, interval, $scope) {
        var _internalId = _intervalUID++;

        _intervals[ _internalId ] = $timeout(function intervalOperation(){
            operation( $scope || undefined );
            _intervals[ _internalId ] = $timeout(intervalOperation, interval);
        }, interval);

        return _internalId;
      },

      $clearInterval: function(id) {
        return $timeout.cancel( _intervals[ id ] );
      }
    }
  }
]);

示例用法:

app.controller('myController', [

  '$scope', 'timeFunctions',

  function myController($scope, timeFunctions) {

    $scope.startFeature = function() {

      // scrollTimeout will store the unique ID for the $setInterval instance
      return $scope.scrollTimeout = timeFunctions.$setInterval(scroll, 5000, $scope);

      // Function called on interval with scope available
      function scroll($scope) {
        console.log('scroll', $scope);
        $scope.currentPage++;

      }
    },

    $scope.stopFeature = function() {
      return timeFunctions.$clearInterval( $scope.scrollTimeout );
    }

  }
]);

您能否调用一个普通的 JavaScript 方法,然后在该方法中用 $apply 包装 Angular 代码?

例子

timer = setInterval('Repeater()', 50);

var Repeater = function () {
  // Get Angular scope from a known DOM element
  var scope = angular.element(document.getElementById(elem)).scope();
  scope.$apply(function () {
    scope.SomeOtherFunction();
  });
};

最新的候选版本 (1.2.0 rc3) 具有间隔支持。查看变更日志