我使用childByAutoId在Firebase数据库中创建了一个节点。现在,我想快速删除它。如何获得对此自动生成号码的引用?我正在考虑使用此代码:
typeof item === 'object'
谢谢
答案 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
}