Heim  >  Fragen und Antworten  >  Hauptteil

Google Firestore – Wie erhalte ich mehrere Dokumente mit mehreren IDs auf einmal?

<p>Ich habe mich gefragt, ob es möglich ist, mehrere Dokumente über eine Liste von IDs in einem Roundtrip (Netzwerkaufruf) zur Firestore-Datenbank abzurufen. </p>
P粉536532781P粉536532781420 Tage vor423

Antworte allen(2)Ich werde antworten

  • P粉633075725

    P粉6330757252023-08-28 12:45:41

    实际上,您会像这样使用 firestore.getAll

    async getUsers({userIds}) {
        const refs = userIds.map(id => this.firestore.doc(`users/${id}`))
        const users = await this.firestore.getAll(...refs)
        console.log(users.map(doc => doc.data()))
    }
    

    或者使用 Promise 语法

    getUsers({userIds}) {
        const refs = userIds.map(id => this.firestore.doc(`users/${id}`))
        this.firestore.getAll(...refs).then(users => console.log(users.map(doc => doc.data())))
    }
    

    Antwort
    0
  • P粉860370921

    P粉8603709212023-08-28 12:42:52

    如果您在 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 现在支持 IN 查询!

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

    Antwort
    0
  • StornierenAntwort