我使用了Firebase文档提供的示例代码,它可以打印出错误消息。我不知道问题是在代码内还是在数据库的结构内,因为还有子集合。在这种情况下,我试图检索“家庭标题”字段,但是听说这是不可能的(可能是错误的),所以我试图检索“样品婚礼”文档,但无济于事。这是我第一次在Swift中使用Firestore编程项目。
这是我的代码:
let db = Firestore.firestore()
let docRef = db.collection("Weddings").document("Sample Wedding")
docRef.getDocument { (document, error) in
if let document = document, document.exists {
let dataDescription = document.data().map(String.init(describing:)) ?? "nil"
print("Document data: \(dataDescription)")
} else {
print("Document does not exist")
}
这是我的数据库结构: ]
答案 0 :(得分:1)
您可以这样尝试
malloc