如何限制FireBase firestore get()方法返回的记录?

时间:2018-10-02 13:37:25

标签: javascript firebase google-cloud-firestore

根据问题,我想按时间基础检索记录。

例如

users:(collection) {
      uid(document) : {
          uid(field) : 'someuid',
          name(field) : 'somename',
          messages(subcollection) : {
            '1538484652672'(document) :  {
                 text(field) : 'somemessages',
                 time(field) : 1538484652672,
            }
            '1538483652672'(document) :  {
                 text(field) : 'somemessages',
                 time(field) : 1538483652672,
            }
            '1538483652672'(document) :  {
                 text(field) : 'somemessages',
                 time(field) : 1538483652672,
            }
            .
            .
            .
            .
            .
            (possible many thousands entries)
          }
       },
       uid : {
       }
    }

用户是集合,名称是文档,消息是子集合。

在子集合消息中,键就像从...开始构建

console.log(new Date().getTime());

我想检索今天和昨天发布的所有消息。

我失败的尝试:

let backYesterday = new Date(today.getFullYear(), today.getMonth() , today.getDate()-1).getTime();
db.collection('users').where("uid","==",uid).collection('messages')
                     .where("time" , '>' , backYesterday).get()
                     .then(function(querySnapshot) {
                        console.log(querySnapshot);
                        querySnapshot.forEach(function(doc) {
                            console.log(doc.id, " => ", doc.data());
                        });
                    })
                    .catch(function(error) {
                        console.log("Error getting documents: ", error);
                    });

输出
触发用户功能,开始执行 执行耗时3987毫秒,用户功能成功完成

我不知道我要去哪里错了。

1 个答案:

答案 0 :(得分:3)

您正试图从查询中获取子集合,这是不可能的。您只能从特定文档中获取子集合。这意味着您首先需要执行查询以查找符合条件的文档。

由于您的文档似乎是用与您查询的相同的UID命名的,因此您也可以不用查询就可以逃脱:

var userDoc = db.collection('users').doc(uid)
userDoc.collection('messages')
       .where("time" , '>' , backYesterday).get()