gpt4 book ai didi

javascript - 获取过去 24 小时的 Firebase 数据

转载 作者:搜寻专家 更新时间:2023-11-01 05:27:59 25 4
gpt4 key购买 nike

我正在尝试获取过去 24 小时的 Firebase 数据。其实我有这个查询:

var ref = firebase.database().ref().child("datos").child("pedidos").child("nuevos");

我该怎么做?

最佳答案

在时间戳 child 上使用 orderByChild 方法(或者您使用的任何存储时间的方法),并使用 startAt 仅获取 24 小时之前的数据

let before24Hour = new Date().getTime() - (24 * 3600 * 1000);
firebase.database().ref().child('datos/pedidos/nuevos').orderByChild('time').startAt(before24Hour).on('value' , function(snap){
console.log(snap.val());
});

关于javascript - 获取过去 24 小时的 Firebase 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48331000/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com