0

这是我的 app.js

var MyApp = angular.module('MyApp', []);

MyApp.controller('MyController', ['$scope', function($scope){

  $scope.watchMe = 'hey';

  $scope.init = function() {
    setTimeout(function() {
      $scope.watchMe = 'changed!';
    }, 3000)

  };

  $scope.$watch('watchMe', function() {
     console.log($scope.watchMe)
  });

}]);

我想,3秒后,我会看到:

'changed!'

在我的控制台中。

相反,我只看到:

'hey'

我在 index.html 中调用我的 init() 函数,如下所示:

<div ng-controller="MyController"  ng-init="init()">

为什么我看到这个输出?

4

1 回答 1

1
var MyApp = angular.module('MyApp', []);

MyApp.controller('MyController', ['$scope', '$timeout', function($scope, $timeout){

  $scope.watchMe = 'hey';

  $scope.init = function() {
  $timeout(function() {
      $scope.watchMe = 'changed!';
  }, 500);

  };

  $scope.$watch('watchMe', function(newVal, oldVal) {
     console.log(newVal);
  });

}]);

您正在使用 setTimeout 方法。Angular 没有关注该事件。使用 angular 的 $timeout 服务然后你可以看到预期的结果。

阅读有关角度摘要循环和脏检查的更多详细信息。

于 2016-02-15T06:12:55.930 回答