标签:对象 ng-repeat 就是 group 定义 自动 scope 数组 元素
首先ng-model设置为$parent.conf[$index]:
<label> <input type="checkbox" ng-click="checkSuspectAll(data,$index)" ng-model="$parent.conf[$index]"> {{data.groupName}}</label>
在controller中定义了一个$scope.conf = [];就是一个数组,通过 scope.conf 把 ng-model 的所有元素自动保存
$scope.checkSuspectAll = function(data,$index) { var item = data.suspectList; if($scope.conf[$index]) { ... ... }else{ ... ... } };
AngularJS 获取ng-repeat的动态ng-model
标签:对象 ng-repeat 就是 group 定义 自动 scope 数组 元素
原文地址:http://www.cnblogs.com/miny-simp/p/7773982.html