我想使用AngularJS获取复选框的所有选定对象。
以下是我的代码
我的观点.tpl.html
<tr ng-repeat="item in itemList">
<td>
<input type="checkbox" ng-click="clickedItem(item.id)"
ng-model="model.controller.object"
{{item.name}} />
</td>
我的控制器
$scope.itemList = [
{
id:"1",
name:"first item"
},
{
id:"2",
title:"second item"
},
{
id:"3",
title:"third item"
}
];
$scope.selection = [];
$scope.clickedItem = function(itemId) {
var idx = $scope.selection.indexOf(itemId);
if (idx > -1) {
$scope.selection.splice(idx, 1);
}
// is newly selected
else {
var obj = selectedItem(itemId);
$scope.selection.push(obj);
}
};
function selectedItem(itemId) {
for (var i = 0; i < $scope.itemList.length; i++) {
if ($scope.itemList[i].id === itemId) {
return $scope.itemList[i];
}
}
}
在这里,我将获取$scope.selection
中的所有选定项目。如何才能将其转到ng-model
?
是否有可能与ng-model="model.controller.object = selection"
类似,因为我需要将所选的$scope.selection
分配到model.controller.object
答案 0 :(得分:7)
如果我理解正确你想创建一个复选框并动态地将它绑定到列表中的一个项目,如果是这样的话我就会这样做:
$scope.modelContainer=[];
angular.forEach($scope.itemList,function(item){
$scope.modelContainer.push({item:item,checked:false });
});
HTML:
<div ng-repeat="item in itemList">
{{item.name}}
<input type="checkbox" ng-click="selected(item.id)" ng-model="modelContainer[$index].checked" />
</div>
见plunk。每当您选中复选框时,请在控制台中查看模型容器更改。