たとえば、 this Plnkr を検討してください。 fooCollection
のメンバーが事前にいくつ作成されるかわかりません。そのため、bar
モデルがいくつ存在するかわかりません。
しかし、私はそれらがangularモデルであり、それらがどこに行くかを知っています。
$watch
これらについて?
bar
モデルが変更されたときに動作をトリガーする必要があるため、これを行う必要があります。 fooCollection自体を見るだけでは十分ではありません。$watch
リスナーは、bar
が変更されたときに起動しません。
関連するHTML:
<body ng-controller="testCtrl">
<div ng-repeat="(fooKey, foo) in fooCollection">
Tell me your name: <input ng-model="foo.bar">
<br />
Hello, my name is {{ foo.bar }}
</div>
<button ng-click="fooCollection.Push([])">Add a Namer</button>
</body>
関連するJS:
angular
.module('testApp', [])
.controller('testCtrl', function ($scope) {
$scope.fooCollection = [];
$scope.$watch('fooCollection', function (oldValue, newValue) {
if (newValue != oldValue)
console.log(oldValue, newValue);
});
});
個々のリスト項目コントローラーを作成します。 Plnkrのデモ
angular
.module('testApp', [])
.controller('testCtrl', function ($scope) {
$scope.fooCollection = [];
})
.controller('fooCtrl', function ($scope) {
$scope.$watch('foo.bar', function (newValue, oldValue) {
console.log('watch fired, new value: ' + newValue);
});
});
<html ng-app="testApp">
<body ng-controller="testCtrl">
<div ng-repeat="(fooKey, foo) in fooCollection" ng-controller="fooCtrl">
Tell me your name: <input ng-model="foo.bar" ng-change="doSomething()">
<br />
Hello, my name is {{ foo.bar }}
</div>
<button ng-click="fooCollection.Push([])">Add a Namer</button>
</body>
</html>
コレクションにデータが入力されている場合、ng-repeatの各アイテムに時計を配置できます。
html
<div ng-repeat="item in items">
{{ item.itemField }}
</div>
js
for (var i = 0; i < $scope.items.length; i++) {
$scope.$watch('items[' + i + ']', function (newValue, oldValue) {
console.log(newValue.itemField + ":::" + oldValue.itemField);
}, true);
}
3番目の引数としてtrueを$ watchに渡すことができます
$scope.$watch('something', function() { doSomething(); }, true);
メインコントローラーに変更を通知するカスタムディレクティブを作成することもできます
YourModule.directive("batchWatch",[function(){
return {
scope:"=",
replace:false,
link:function($scope,$element,$attrs,Controller){
$scope.$watch('h',function(newVal,oldVal){
if(newVal !== oldVal){
Controller.updateChange(newVal,oldVal,$scope.$parent.$index);
}
},true);
},
controller:"yourController"
};
}]);
あなたのマークアップはこのようなものだと仮定します
<ul>
<li ng-repeat="h in complicatedArrayOfObjects">
<input type="text" ng-model="someModel" batch-watch="$index" />
</li>
</ul>
これはあなたのコントローラーです
YourModule.controller("yourController",[$scope,function($scope){
this.updateChange = function(newVal,oldVal,indexChanged){
console.log("Details about the change");
}
}]);
また、最初の3つの引数、scope、element、attrにあるディレクティブリンク関数によって提供される値を再生することもできます。
別のコントローラーが必要ないため、代わりに ng-change を使用しました。
シンプルなjsFiddle: https://jsfiddle.net/maistho/z0xazw5n/
関連するHTML:
<body ng-app="testApp" ng-controller="testCtrl">
<div ng-repeat="foo in fooCollection">Tell me your name:
<input ng-model="foo.bar" ng-change="fooChanged(foo)">
<br />Hello, my name is {{foo.bar}}</div>
<button ng-click="fooCollection.Push({})">Add a Namer</button>
</body>
関連するJS:
angular.module('testApp', [])
.controller('testCtrl', function ($scope) {
$scope.fooCollection = [];
$scope.fooChanged = function (foo) {
console.log('foo.bar changed, new value of foo.bar is: ', foo.bar);
};
});
これをやろう
<div ng-repeat="foo in fooCollection" ng-click="select(foo)">Tell me your ame:
<input ng-model="foo.bar" ng-change="fooChanged(foo)">
<br />Hello, my name is {{foo.bar}}</div>
<button ng-click="fooCollection.Push({})">Add a Namer</button>
</div>
ディレクティブ/コントローラーにコードがあります
$scope.selectedfoo = {};
$scope.select = (foo) => {
$scope.selectedfoo = foo;
}
$scope.$watch('selectedfoo ', (newVal, oldVal) => {
if (newVal) {
}
},true)