Firestore和Vue.js的多个Where子句

时间:2019-02-25 02:54:26

标签: javascript firebase google-cloud-firestore

我需要使用多个where子句运行查询,但是我的查询将忽略它们。我在网上看过,找不到适合我需要的示例。 这是我当前正在使用的代码。任何帮助都将一直受到赞赏。

let codeRef = db.collection('codes')
    codeRef.where('code', '==', this.code)
    codeRef.where('gid', '==', this.gid)
    codeRef.get().then(snapshot => { ...

1 个答案:

答案 0 :(得分:1)

您尝试将它们组合吗?

let codeRef = db.collection('codes')
              .where('code','==',this.code)
              .where('gid','==',this.gid)
              .get()