gpt4 book ai didi

javascript - Google Firestore - 如何在一次往返中通过多个 ID 获取多个文档?

转载 作者:行者123 更新时间:2023-11-30 11:01:35 24 4
gpt4 key购买 nike

我想知道是否可以在 Firestore 数据库的一次往返(网络调用)中通过 ID 列表获取多个文档。

最佳答案

如果您在 Node 中:

https://github.com/googleapis/nodejs-firestore/blob/master/dev/src/index.ts#L978

/**
* Retrieves multiple documents from Firestore.
*
* @param {...DocumentReference} documents - The document references
* to receive.
* @returns {Promise<Array.<DocumentSnapshot>>} A Promise that
* contains an array with the resulting document snapshots.
*
* @example
* let documentRef1 = firestore.doc('col/doc1');
* let documentRef2 = firestore.doc('col/doc2');
*
* firestore.getAll(documentRef1, documentRef2).then(docs => {
* console.log(`First document: ${JSON.stringify(docs[0])}`);
* console.log(`Second document: ${JSON.stringify(docs[1])}`);
* });
*/

这是专门针对服务器 SDK 的

更新: Cloud Firestore Now Supports IN Queries!

myCollection.where(firestore.FieldPath.documentId(), 'in', ["123","456","789"])

关于javascript - Google Firestore - 如何在一次往返中通过多个 ID 获取多个文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53310122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com