我正在尝试使用startAt和/或endAt过滤Firebase数据。 我的数据结构如下。
{
"notes" : {
"-LOs0Ikx4ydM5RatREM1" : {
"data" : {
"dueDate" : 1561629600000,
"description" : "Korewa nan desuka?!",
"createdAt" : 1539611900000,
"title" : "First "
},
"members" : {
"author" : "1212121212121212121212121212"
}
},
"-LOs0Ikx4ydM5RatREM2" : {
"data" : {
"dueDate" : 4004870448000,
"description": "Test"
"createdAt" : 1539611900000,
"title" : "Second"
},
"members" : {
"author" : "1212121212121212121212121212"
}
},
"-LhBt9msLFKqUQ-koI9W" : {
"data" : {
"dueDate" : 1564653600000,
"description" : "abc",
"createdAt" : 1560363158279,
"title" : "August 1"
},
"members" : {
"author" : "3434343434343434343434343434"
}
},
"-LhBtKdDrQv9eKuYdfCi" : {
"data" : {
"dueDate" : 1564653600000,
"description" : "abcdef",
"createdAt" : 1560363158279,
"title" : "August 2"
},
"members" : {
"author" : "3434343434343434343434343434"
}
}
}
}
我希望获取在DueDate通过的所有“注释”。
const now = moment().valueOf() //Eg. 1561629500000
database.ref('notes/')
.orderByChild("dueDate")
.endAt(now)
.once("value", (snapshot) => {
console.log('Process expired notes')
snapshot.forEach( (data) => {
const obj = data.val()
console.log('Date comparison:', (now >= obj.data.alertDate))
...
上面的代码不起作用,它返回示例JSON中的所有对象。 console.log为四个返回的对象中的三个记录“ False”。
我可以做一个比较,只处理符合我的条件的对象,但这会违背目的。
我已经在[“ notes \ data \ alertDate”]上建立了数据库索引。
我想念什么?我一定以某种方式曲解了文档。 :)
答案 0 :(得分:1)
您的dueDate
属性嵌套在data
下,因此您需要按data/dueDate
来寻址:
database.ref('notes')
.orderByChild("data/dueDate")
您可能希望同时包含startAt()
和endAt()
子句,其中startAt()
的值应该是合理的,而endAt()
已经使用的特定值。