我在使用Cloud Firestore生成随机唯一ID时遇到问题。以前我使用实时数据库并生成随机字符串我使用childByAutoID().key
。
有没有办法为Cloud Firestore做类似的事情?
正如杰伊在评论中所说,这并不重复,因为我试图生成一个随机字符串,但我并没有试图获取随机文档。
答案 0 :(得分:6)
如果您创建的文档没有明确的ID,我们的SDK会自动生成一个随机的文档。
// Add a new document with a generated id.
var ref: DocumentReference? = nil
ref = db.collection("messages").addDocument(data: [
"sender": "<my_senders_id>",
"recipient": "<my_recipient_id>",
"message": "Hello from Google Cloud Platform & Firebase!",
"status": "unread"
]) { err in
if let err = err {
print("Error adding document: \(err)")
} else {
print("Document added with ID: \(ref!.documentID)")
}
}
答案 1 :(得分:2)
要生成随机ID,
let ref = db.collection("somePath")
let docId = ref.document().documentID