我使用firebase-element如何與聚合物的火力地堡元素清除所有數據
<firebase-document id='user'
location="https://bar-foo.firebaseio.com/user/qo8joqjdj"
data="{{info}}"></firebase-document>
而在火力點我已經存儲了以下數據:現在
bar-foo: {
user: {
qo8joqjdj: {
settings: { ... }
profile: { ... }
actions: { ... }
}
}
,如果用戶點擊該按鈕Remove
所有的數據都應該從firebase中刪除。從firebase-element doc有一個叫remove
this.user.remove({});
然而,這並不工作,我必須承認,這是我不清楚確切的說法應該是什麼樣的方法。我嘗試了不同的東西,但都沒有成功。任何建議,將不勝感激 ?
我相信你可以通過將用戶數據設置爲空來清空。像這樣:.... child('qo8joqjdj')。set('') – grohjy
從firebase文檔:「remove()相當於調用set(null)」 – grohjy