我有一个对象数组,我想在单击Delete键时删除某些对象。但是,无论我创建了多少行,它总是从rows数组中删除最后一项。即使我明确地输入了这样的行,$ scope.rows.splice(1,1) - 它仍将删除最后一个元素,而不是第二个元素。
JS
angular.module('app', ['ngAnimate', 'ui.bootstrap'])
.directive('queryBuilder', function() {
return {
restrict: 'E',
scope: {},
controller: function($scope) {
$scope.rows = [{}]
$scope.$on('addRowRqst', function(evt) {
// evt.stopPropagation()
$scope.rows.push({})
});
$scope.$on('removeRowRqst', function(evt, args) {
// evt.stopPropagation()
//THIS IS WHERE THE REMOVE HAPPENS
$scope.rows.splice($scope.rows.indexOf(args),1);
});
},
templateUrl: 'queryBuilderTemplate.html',
}
}).directive('queryRow', function() {
return {
scope: {},
restrict: 'EA',
templateUrl: 'queryRowTemplate.html',
controller: function($scope) {
$scope.addRqst = function() {
$scope.$emit('addRowRqst')
};
$scope.removeRqst = function(index) {
$scope.$emit('removeRowRqst', index)
};
},
link: function(scope, elem, attrs) {
}
}
});
HTML的相关摘录
....
<button class="btn btn-default" ng-click="removeRqst($parent.row)" type="submit">Delete Row</button>
....
Plunker: http://plnkr.co/edit/rDkXpIgiOSoNvLNPsVbP
测试:单击添加行3次。然后单击第二行上的“删除”。你会看到它实际上删除了3行,而不是第2行
答案 0 :(得分:1)
为了清楚答案@ZsoltGyöngyösi给出了:
每个包含
id
字段的元素都需要ng-model="$parent.row.field"
因此,如果您以这种方式设置queryRowTemplate.hml
,则会删除正确的行:
<div class="form-group col-md-3">
<label for="selectedField">Select Field</label>
<select id="selectedField" class="form-control" ng-model="$parent.row.field">
<option>title</option>
<option>application</option>
<option>subject</option>
<option>filetype</option>
</select>
</div>
<div class="form-group col-md-3">
<label for="logicalOperator">Logical Operator</label>
<select id="logicalOperator" class="form-control" ng-model="$parent.row.logical">
<option>equal to</option>
<option>not equal to</option>
</select>
</div>
<div class="form-group col-md-3">
<label for="searchText">Search</label>
<input id="searchText" class="form-control" type="text" placeholder="search..." ng-model="$parent.row.search" />
</div>
<div class="form-group col-md-3">
<label for="operator">Operator (optional)</label>
<select id="operator" class="form-control" ng-model="$parent.row.operator">
<option value=""></option>
<option>AND</option>
<option>OR</option>
</select>
</div>
<button class="btn btn-default" ng-click="addRqst()" type="submit">Add Row</button>
<button class="btn btn-default" ng-click="removeRqst($parent.row)" type="submit">Delete Row</button>
{{$parent.$index}}
<hr />
答案 1 :(得分:1)
代码很好,正在删除正确的表单。问题是您没有将视图绑定到queryRow
指令,因此似乎删除了最后一个。实际上,angular会根据数组重建您的视图,而不了解模板的内容。因此,未绑定的输入字段只保留值,但最后一个除外。