這在我看來是相關代碼:AngularFire - 刪除單個項目
p(ng-repeat="t in todos")
input(
type="checkbox",
ng-model="t.done",
ng-click="clearItem($event)"
)
{{t.text}} done? {{t.done}}
當點擊複選框,我想todos
數組中的相應對象從數據庫中刪除。
我clearItem
功能如下:
$scope.clearItem = function(event) {
todoRef.remove($scope.t);
}
然而,這消除在我的數據庫中的所有條目。我希望它只刪除有問題的特定對象。無論如何對我來說這樣做?
slfan立即檢查出來 –