我有通过创建的项目列表ng-repeat。我也有删除按钮。单击删除按钮将删除数组的最后一项。 plnkr
ng-repeat
但是我想从第一个项目开始一个一个地删除项目。我怎样才能做到这一点?我用它来删除列表项:
$scope.index = 1; $scope.remove = function(item) { var index = $scope.cards.indexOf(item); $scope.cards.splice(index, 1); }
有什么方法可以从顶部移除?
最简单的方法是使用shift()。如果有数组,该shift函数会将所有内容向左移动。
shift()
shift
var arr = [1, 2, 3, 4]; var theRemovedElement = arr.shift(); // theRemovedElement == 1 console.log(arr); // [2, 3, 4]