如何使用其文档ID从Firestore中获取多个文档?我应该使用哪个变量?
await FS.collection(CollectionName.product)
.where("id", "in", productIDs)
.get()
答案 0 :(得分:0)
如果要将文档ID称为过滤器中的字段,则可以使用FieldPath.documentId()。
FS.collection(CollectionName.product)
.where(FS.FieldPath.documentId(), "in", productIDs)
.get()
根据您导入和初始化SDK的方式,您的语法可能会有所不同。