$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
ますか?
if
ステートメントを切り替えます。