$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
?
5
如果newValue等于0,false,“”或其他类似“我看到数据已更改!”的提示,请快速提示。不会开火。例如,原始值是true,newValue是false。仅在其中使用newValue就足够了,只有在发生某些更改时才调用手表。如果它是一个对象,它将立即被调用。
—
Mathew Berg
好提示,谢谢!我将切换该
—
Evil Closet Monkey
if
语句。