小编典典

删除数组的第一项(如从堆栈中弹出)

all

我有通过创建的项目列表ng-repeat。我也有删除按钮。单击删除按钮将一项一项删除数组的最后一项。
普朗克

但我想从第一项开始逐项删除。我怎样才能做到这一点?我用它来删除列表项:

  $scope.index = 1;
  $scope.remove = function(item) { 
    var index = $scope.cards.indexOf(item);
    $scope.cards.splice(index, 1);     
  }

有什么办法可以从顶部删除?


阅读 71

收藏
2022-06-14

共1个答案

小编典典

最简单的方法是使用shift(). 如果您有一个数组,该shift函数会将所有内容向左移动。

var arr = [1, 2, 3, 4]; 
var theRemovedElement = arr.shift(); // theRemovedElement == 1
console.log(arr); // [2, 3, 4]
2022-06-14