[NG] splice

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

這樣會把data的index的該筆刪掉

留言