在 Firebase 中反转后序
在 Firebase 中,使用推送检索的数据按升序时间顺序返回。但是,某些情况需要按降序显示帖子。 Firebase 提供了两种方法来实现此目的:
1。建立反向时间戳
添加具有反向时间戳的子属性,例如“-timestamp”。然后使用以下命令按此反转属性对数据进行排序:
fbl.child('sell').orderByChild("-timestamp").limit(20).on("value", function(fbdata) { // handle data display here }
2。客户端反转
按升序检索子节点并使用以下命令在客户端反转它们:
fbl.child('sell').limit(20).on('value', function(fbdata) { var posts = []; fbdata.forEach(function(child) { posts.unshift(child.exportVal()); }); // Display posts in descending order: console.log(posts); })
以上是如何在 Firebase 中撤消后订单?的详细内容。更多信息请关注PHP中文网其他相关文章!