我有通过创建的项目列表ng-repeat。我也有删除按钮。单击删除按钮将一项一项删除数组的最后一项。 普朗克
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]