我有以下代码从 AngularJS 的列表中删除一个项目:
$scope.removeItem = function() {
if($scope.items.indexOf(toDelete) > -1) {
var index = $scope.items.indexOf(toDelete);
$scope.items.splice(index, 1);
}
};
我的玉模板中的以下代码:
div.row.spacing-small(ng-repeat='item in items')
div.col-lg-4: p {{item}}
div.col-lg-2: button.btn.btn-danger.btn-block Delete
items 对象基本上是一个数组,像这样:['foo', 'bar']。有没有办法将“删除”按钮与 removeItem 功能连接起来?我仍然在玩这个奇妙的框架,但它太新了,有时很难在文档中找到正确的东西。