問題:
是否可以使用一個請求來擷取多個Firestore 文檔使用列表的單一網路呼叫ID?
答案:
是的,有多種方法可以使用 Firestore來實現此目的SDK:
Node.js:
firestore.getAll(...documents); // Variant A
let documentRef1 = firestore.doc('col/doc1'); let documentRef2 = firestore.doc('col/doc2'); firestore.getAll(documentRef1, documentRef2).then(docs => {...}); // Variant B
注意: 變體A 僅適用於伺服器。
更新:
Firestore 現在支援 IN 查詢,這提供了一種透過 ID 清單檢索多個文件的更有效方法:
myCollection.where(firestore.FieldPath.documentId(), 'in', ["123","456","789"]);
以上是我可以透過一個請求來取得多個 Firestore 文件嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!