从Firebase过滤“时间戳”数据

时间:2019-01-01 13:32:04

标签: angular firebase firebase-realtime-database angularfire2

我正在使用 AngularFire2 ,并尝试根据TimeStamp查询特定范围的数据。

我使用的代码如下:

this.db.list('timeRecords/' + this.userID + '/' + this.teamRef, ref
         => ref.orderByChild('timeStamp')
    .startAt("<starting_timestamp>")
    .endAt("<ending_timestamp>"))
    .valueChanges().subscribe(data => {

     console.log(data)
})

data返回一个空数组!

Firebase数据库(在指定节点,即'timeRecords/' + this.userID + '/' + this.teamRef上)的数据显示在public gist的以下URL中:

https://gist.github.com/DevlprArup/3fe83e6e6082d5b1d419bc8a1831cef4

如何获取包含指定范围的数组?

0 个答案:

没有答案