질문:
목록을 사용한 단일 네트워크 호출 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는 이제 ID 목록으로 여러 문서를 검색하는 더 효율적인 방법을 제공하는 IN 쿼리를 지원합니다.
myCollection.where(firestore.FieldPath.documentId(), 'in', ["123","456","789"]);
위 내용은 한 번의 요청으로 여러 Firestore 문서를 가져올 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!