在Swift中,如果你知道一个字段的值,想要获取Firestore文档的ID,可以通过以下步骤实现:
import Firebase
import FirebaseFirestore
let db = Firestore.firestore()
let query = db.collection("collectionName").whereField("fieldName", isEqualTo: "fieldValue")
其中,"collectionName"是你要查询的集合名称,"fieldName"是你要匹配的字段名,"fieldValue"是你已知的字段值。
query.getDocuments { (snapshot, error) in
if let error = error {
print("Error getting documents: \(error)")
} else {
for document in snapshot!.documents {
let documentID = document.documentID
print("Document ID: \(documentID)")
}
}
}
在闭包中,你可以通过snapshot!.documents
获取到查询结果的文档数组,然后使用document.documentID
获取每个文档的ID。
这样,你就可以通过已知字段的值获取Firestore文档的ID了。
关于Firestore的更多信息,你可以参考腾讯云的云数据库 Firestore 产品介绍链接:https://cloud.tencent.com/product/tcb-firestore
领取专属 10元无门槛券
手把手带您无忧上云