我使用Firebase
作爲我的數據庫... 火力地堡刪除快照孩子迅速
然後我想刪除"codigo"
鍵值。這是我的if語句:
let profile = FIRDatabase.database().reference().child("barcodes")
profile.observeEventType(.Value, withBlock: { (snapshot) -> Void in
for item in snapshot.children {
if item.value["codigo"]as! String == barcodes[indexPath.row].code{
print("HERE")
item.removeValue!()
}
}
但它崩潰在item.removeValue()
。
你好,Dravidian,感謝您的轉發,但它仍然沒有刪除我的firebase控制檯,它崩潰。代碼有一些錯誤,你測試它嗎?在此先感謝,如果你不能刪除只是codigo密鑰,你可以幫我刪除這個「codigo」的自動識別號, –
我有一個錯誤在snapshot.exist()函數 –
也我有一個錯誤,如果item.1 [ 「codigo」]作爲! String ==條形碼[indexPath.row] .code –