var messageListRef = new Firebase('https://SampleChat.firebaseIO-demo.com/message_list');
messageListRef.push({ 'user_id': 'fred', 'text': 'Yabba Dabba Doo!' });
如何後來從火力地堡刪除添加的數據{ 'user_id': 'fred', 'text': 'Yabba Dabba Doo!' }
?有沒有一個乾淨和簡單的方法來做到這一點?
我希望能夠稍後再次找到該數據,然後將其刪除,假設我不知道生成的唯一ID,我不能做new Firebase('https://SampleChat.firebaseIO-demo.com/message_list/'+uniqueId).remove()
(我不知道這是否是好事實踐)。在我的想法中,我會首先查詢數據,但我不知道如何使用數據列表來做到這一點。例如,我希望能夠刪除Disconnect上的數據。
在該頁https://www.firebase.com/docs/web/api/firebase/push.html上,看起來「See List of Data」尚未寫入。是否在路線圖中爲數據列表添加這樣的刪除?
查看數據列表可能是指向https://www.firebase.com/docs/網絡/引導/保存-data.html#部分推 – 2015-03-31 23:33:29