如何使用其文档ID从Firestore获取多个文档?

时间:2020-07-15 05:12:17

标签: javascript firebase google-cloud-firestore

如何使用其文档ID从Firestore中获取多个文档?我应该使用哪个变量?

await FS.collection(CollectionName.product)
                    .where("id", "in", productIDs)
                    .get()

enter image description here

1 个答案:

答案 0 :(得分:0)

如果要将文档ID称为过滤器中的字段,则可以使用FieldPath.documentId()

FS.collection(CollectionName.product)
    .where(FS.FieldPath.documentId(), "in", productIDs)
    .get()

根据您导入和初始化SDK的方式,您的语法可能会有所不同。