有人帮帮我! 假设我有一个复选框列表,每个复选框都有一个ID。 我想使用选中的复选框ID对$范围进行范围调整。
<div ng-app="myapp">
<div ng-controller="ctrlParent">
<table>
<tr ng-repeat="(key, value) in providers">
<td><input type="checkbox" ng-model="ids[value.Id]"> {{value}} </td>
</tr>
</table>
{{ids}}
</div>
我的控制员:
var app = angular.module('myapp',[]);
app.controller('ctrlParent',function($scope){
$scope.providers = [{Id:5},{Id:6},{Id:8},{Id:10}];
$scope.ids = {};
});
现在我的数组输出(如果选中所有复选框)是:{“5”:true,“6”:true,“8”:true,“10”:true}
我希望:[{Id:5},{Id:6},{Id:8},{Id:10}]
答案 0 :(得分:8)
这是一个可能的解决方案:
<input type="checkbox" ng-model="ids[$index]" ng-true-value="
{{value}}" ng-false-value="{{undefined}}"/>{{value}}
通过这种方式,您将拥有一组对象,因为您正在分配ids[$index] = value
。
但是有一个缺点:当您仔细检查一个复选框时,数组中将有一个空元素。
var app = angular.module('myapp', []);
app.controller('ctrlParent', function($scope) {
$scope.providers = [{
Id: 5
}, {
Id: 6
}, {
Id: 8
}, {
Id: 10
}];
$scope.ids = [];
$scope.$watchCollection('ids', function(newVal) {
for (var i = 0; i < newVal.length; ++i) {
console.log(newVal[i]);
}
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="myapp">
<div ng-controller="ctrlParent">
<table>
<tr ng-repeat="(key,value) in providers">
<td>
<input type="checkbox" ng-model="ids[$index]" ng-true-value="{{value}}" ng-false-value="{{undefined}}" />{{value}}
</td>
</tr>
</table>{{ids}}</div>
</div>
&#13;
答案 1 :(得分:1)
<input type="checkbox" ng-model="ids[$index]" ng-true-value="{{value}}" >
添加ng-true-value指令将解决问题 并在控制器中将ID从对象更改为数组