如何$watch
在操作内部数据(例如,插入或删除数据)时触发 Angular 指令中的变量,但不为该变量分配新对象?
我有一个当前从 JSON 文件加载的简单数据集。我的 Angular 控制器执行此操作,并定义了一些函数:
App.controller('AppCtrl', function AppCtrl($scope, JsonService) {
// load the initial data model
if (!$scope.data) {
JsonService.getData(function(data) {
$scope.data = data;
$scope.records = data.children.length;
});
} else {
console.log("I have data already... " + $scope.data);
}
// adds a resource to the 'data' object
$scope.add = function() {
$scope.data.children.push({ "name": "!Insert This!" });
};
// removes the resource from the 'data' object
$scope.remove = function(resource) {
console.log("I'm going to remove this!");
console.log(resource);
};
$scope.highlight = function() {
};
});
我有一个<button>
正确调用该函数的$scope.add
函数,并且新对象已正确插入到$scope.data
集合中。每次点击“添加”按钮时,我设置的表格都会更新。
<table class="table table-striped table-condensed">
<tbody>
<tr ng-repeat="child in data.children | filter:search | orderBy:'name'">
<td><input type="checkbox"></td>
<td>{{child.name}}</td>
<td><button class="btn btn-small" ng-click="remove(child)" ng-mouseover="highlight()"><i class="icon-remove-sign"></i> remove</button></td>
</tr>
</tbody>
</table>
$scope.data
但是,当这一切发生时,我设置的要监视的指令不会被触发。
我在 HTML 中定义我的标签:
<d3-visualization val="data"></d3-visualization>
这与以下指令相关联(为问题健全而修剪):
App.directive('d3Visualization', function() {
return {
restrict: 'E',
scope: {
val: '='
},
link: function(scope, element, attrs) {
scope.$watch('val', function(newValue, oldValue) {
if (newValue)
console.log("I see a data change!");
});
}
}
});
我一"I see a data change!"
开始就收到消息,但在我点击“添加”按钮之后就再也没有收到消息。
$watch
当我只是从对象中添加/删除对象时,如何触发事件data
,而不是获取一个全新的数据集来分配给data
对象?