質問:
のリストを使用した単一のネットワーク呼び出し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 はサーバーでのみ動作しますSDK.
更新:
Firestore が IN クエリをサポートするようになりました。これにより、ID のリストによって複数のドキュメントをより効率的に取得する方法が提供されます:
myCollection.where(firestore.FieldPath.documentId(), 'in', ["123","456","789"]);
以上が1 回のリクエストで複数の Firestore ドキュメントを取得できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。