0
A
回答
0
您是否嘗試過「child_removed」事件?這是正常使用的事件偵聽器四個事件的;添加,改變,移動和刪除,而不是一個組合。
https://firebase.google.com/docs/database/admin/retrieve-data#child-removed
0
這聽起來像你正在尋找的東西是這樣的:
function handleEvent(event, snapshot, optionalPreviousChildKey) {
switch (event) {
case "child_added": ...
break;
...
}
}
ref.on("child_added", function(snapshot, previousChildKey) { handleEvent("child_added", snapshot, previousChildKey); })
ref.on("child_changed", function(snapshot, previousChildKey) { handleEvent("child_changed", snapshot); })
ref.on("child_moved", function(snapshot, previousChildKey) { handleEvent("child_moved", snapshot, previousChildKey); })
ref.on("child_removed", function(snapshot) { handleEvent("child_removed", snapshot); })
相關問題
- 1. 火力地堡Atmonic添加和刪除條目
- 2. 火力地堡刪除數據
- 3. 火力地堡刪除()在數據庫
- 4. 火力地堡刪除查詢結果
- 5. Angular2火力地堡,刪除項目
- 6. 火力地堡認證狀態變化不火或刪除
- 7. 火力地堡波德密碼改變
- 8. 火力地堡捲曲添加數據
- 9. 添加火力地堡GCM項目
- 10. 火力地堡和recyclerView
- 11. 角火力地堡和AngularFireDatabase
- 12. 火力地堡和Intranet
- 13. 火力地堡和骨幹
- 14. 如何刪除特定的孩子在火力地堡(安卓)
- 15. 火力地堡刪除快照孩子迅速
- 16. 火力地堡刪除子權限被拒絕
- 17. $在火力地堡
- 18. 與火力地堡
- 19. 火力地堡child_added
- 20. 從火力地堡
- 21. 與火力地堡
- 22. 從火力地堡
- 23. 在火力地堡
- 24. 在火力地堡
- 25. 在火力地堡
- 26. 火力地堡DatabaseReference
- 27. 的火力地堡
- 28. 在火力地堡
- 29. 刪除的孩子從火力地堡刪除整個節點迅速
- 30. 火力地堡添加新的子指定名稱