我遇到firebase和swift的问题。我试图使用function: observeSingleEvent
。
我在数据库中有对象,我检查了文档并看了很多教程。但无论我做什么,函数都返回“nil”或返回错误:(
ref = FIRDatabase.database().reference().child("Event")
let eventID = FIRAuth.auth()?.currentUser?.uid
ref.child("Event").child(eventID).observeSingleEvent(of: .value, with: { (snapshot) in
let value = snapshot.value as? NSDictionary
let postDict = value?["title"] as? String ?? ""
print(snapshot)
print(postDict)
})