Firebase实时数据库iOS删除密钥

时间:2018-07-26 19:25:32

标签: ios swift firebase firebase-realtime-database

我的iOS应用程序上有一个正在运行的实时数据库。现在,尝试从客户端添加功能以删除其user_id和历史记录。根据文档,将为removeValue函数。但是,当我运行时,我会收到一个快速错误。这是我的代码:

 self.roofRef.child(user_name as! String).childByAutoId().setValue(dict)
 let conditionRef_ex = self.roofRef.child(user_name as! String)
 conditionRef_ex.observe(.value) { (snap: DataSnapshot) in
 let _tester = snap.value.debugDescription

 // here is line of code to remove user, which is causing the error    
 self.roofRef.removeValue(completionBlock: user_name as! (Error?, DatabaseReference) -> Void)

1 个答案:

答案 0 :(得分:0)

我看到的是:您必须填写removeValue方法的完成块... 而且,您还可以通过将nil指定为另一个写操作(例如setValue或updateChildValues)的值来删除。