angularJS为什么是$ scope。$ watch cant&work?

时间:2015-05-27 07:46:15

标签: javascript angularjs angularjs-scope angularjs-watch

我想添加$ watch来观看$ scope.data是否已更改,但它无法正常工作

[http://jsbin.com/biqesojaqu/1/edit?html,js,console,output][1]

app.html

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-app="App" ng-controller="TestController">
<div>
  <ul>
    <li ng-repeat="item in data"> {{ item.name }}--{{ item.status }}</li>
    <button ng-click="addOnePerson()">ADD</button>
  </ul>
</div>
</body>
</html>

app.js

var App = angular.module("App", []);

App.controller('TestController', function ($scope) {
  $scope.data = [
    {name: 'cc', status: true},
    {name: 'bob', status: false}
  ];
  $scope.name = 'nataila';
  $scope.addOnePerson = function () {
    var personCount = $scope.data.length;
    personCount += 1;
    $scope.data.unshift({name: 'cc'+personCount, status: true});
  };
  $scope.$watch('data', function (){
    console.log('has changed');
  });
});

当我点击按钮时,我认为控制台会输出has chenged,但它什么也没有 请告诉我为什么,在JSbin帮助我很好。

1 个答案:

答案 0 :(得分:2)

$watchCollectionarray

使用object
$scope.$watchCollection('data', function (){
  console.log('has changed');
});

JSBin