web-dev-qa-db-ja.com

ng-repeatによって作成されたモデルの変更を$ watchする方法は?

たとえば、 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);
  });
});
41
Aditya M P

個々のリスト項目コントローラーを作成します。 Plnkrのデモ

js

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

<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>
34
kapv89

コレクションにデータが入力されている場合、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);
}
9
Marcel

3番目の引数としてtrueを$ watchに渡すことができます

$scope.$watch('something', function() { doSomething(); }, true);

https://docs.angularjs.org/api/ng/type/$rootScope.Scope

5
v-tec

メインコントローラーに変更を通知するカスタムディレクティブを作成することもできます

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にあるディレクティブリンク関数によって提供される値を再生することもできます。

3
Jomaf

別のコントローラーが必要ないため、代わりに 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);
    };
});
2
Maistho

これをやろう

 <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)
0
user2156275