首頁  >  文章  >  web前端  >  如何在 Firebase 中撤銷後訂單?

如何在 Firebase 中撤銷後訂單?

Barbara Streisand
Barbara Streisand原創
2024-11-06 17:49:03575瀏覽

How to Reverse Post Order in Firebase?

在 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn