6

如何在 $scope 对象处自动触发我的变量?

//controller
setInterval(function(){$scope.rand=Math.random(10)},1000);

//template
{{rand}}

兰德没有在我的页面上更新。如何更新我的变量?

4

3 回答 3

10
function MyCtrl($scope, $timeout) {
  $scope.rand = 0;

  (function update() {
    $timeout(update, 1000);
    $scope.rand = Math.random() * 10;
  }());
}

演示:http: //jsbin.com/udagop/1/

于 2013-01-24T12:03:45.083 回答
6

实际上,最Angularish的方法是:

function MyCtrl($scope, $interval) {
  $scope.rand = 0;

  function update() {
    $scope.rand = Math.random() * 10;
  }

  $interval(update, 1000);
}

这就是 setInterval() 的 Angular 等价物

于 2014-12-03T23:00:04.337 回答
3

你可以这样做:

//controller    
function UpdateCtrl($scope) {
    $scope.rand = 0;
    setInterval(function() {
       $scope.$apply(function() {
          $scope.rand = Math.random(10);
       });
    }, 1000);            
}

//template
<div ng-controller="UpdateCtrl">
{{rand}}    
</div>
于 2013-01-24T11:58:29.527 回答