21

angularjs docs で指定されたコードを試していました(ここで指定されています:http://jsfiddle.net/zGqB8/)時間ファクトリを実装し、 $timeout を使用して1秒ごとに時間オブジェクトを更新します。

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;
});

$timeout() の代わりに setInterval() 関数を使用するにはどうすればよいですか? angular実行コンテキストに入るために使用する必要があることは知っていscope.$apply()ますが、それはファクトリ関数でどのように機能しますか? つまり、コントローラーにはスコープがありますが、ファクトリ関数にはスコープがありませんか?

4

4 に答える 4

38

$timeoutインターバルとして使用できます。

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

ビューが破壊された場合は、次のことを聞いて破壊することができます$destroy

$scope.$on('$destroy', function(e) {
        $timeout.cancel(cancelRefresh);
});
于 2013-01-09T14:58:17.267 に答える
32

アップデート

Angularはバージョン1.2で$interval機能を実装しました-http://docs.angularjs.org/api/ng.$interval


以下のレガシーの例では、1.2より古いバージョンを使用している場合を除いて無視してください。

AngularでのsetIntervalの実装-

$setIntervalと$clearIntervalを公開するtimeFunctionsというファクトリを作成しました。

ファクトリでスコープを変更する必要があるときはいつでも、それを渡したことに注意してください。これが物事の「角度のある方法」に適合するかどうかはわかりませんが、うまく機能します。

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 );
    }

  }
]);
于 2013-03-08T16:29:09.540 に答える
4

通常の JavaScript メソッドを呼び出して、そのメソッド内で Angular コードを $apply でラップできますか?

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();
  });
};
于 2013-05-13T10:38:11.810 に答える