gpt4 book ai didi

javascript - 我想找到通过 Angular js 中的切换按钮选择的所有员工 ID

转载 作者:行者123 更新时间:2023-12-03 09:04:27 27 4
gpt4 key购买 nike

$scope.toggleSelection = function($index) {
var idx = $scope.employees[$index].id;

var result = $.grep($scope.selection, function(e){ return e.id == idx; });
var flg=true;
var x=0;
for ( var i=0; i<$scope.selection.length; i++) {
if ($scope.selection[i].id == idx){
flg = false;x=i;
break;
}

}
if(flg){
$scope.selection.insert($scope.selection.length,$scope.employees[$index]);

}else{
$scope.selection.remove(x);
}

};

最佳答案

不要将 $indexng-repeat 一起使用,因为当您尝试从数组中删除项目时会遇到错误。使用员工 ID,ng-repeat="employee in员工跟踪 by employee.id

请提供更多有关您想要实现的目标的信息。

关于javascript - 我想找到通过 Angular js 中的切换按钮选择的所有员工 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221943/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com