如何在firebase swift 4中使用childByAutoId获取自动生成的数字

时间:2019-04-02 22:58:42

标签: swift firebase swift4

我使用childByAutoId在Firebase数据库中创建了一个节点。现在,我想快速删除它。如何获得对此自动生成号码的引用?我正在考虑使用此代码:

typeof item === 'object'

谢谢

1 个答案:

答案 0 :(得分:0)

您可以通过

获得价值
Database.database().reference().child("vinyls").observeSingleEvent(of: .value) { (snapshot) in

   let ref = snapshot.value as! [String:[String:Any]]

   // now you get ref where key is the auto-generated id and value is the dictionary you set with setValue before 

}