1
我在火力地堡數組,我得到這樣的:火力地堡ORDERBY降
var ref = new Firebase(url);
ref.orderByChild("date").on("child_added", function(obj) {
console.log(obj.val());
});
但是我需要按降序排列。我如何使用Firebase執行此操作?
謝謝!
我在火力地堡數組,我得到這樣的:火力地堡ORDERBY降
var ref = new Firebase(url);
ref.orderByChild("date").on("child_added", function(obj) {
console.log(obj.val());
});
但是我需要按降序排列。我如何使用Firebase執行此操作?
謝謝!
由於您添加了AngularJS標記,我假設您在項目中使用了Angular。在那種情況下,它會讓你的生活更容易使用AngularFire(http://angularfire.com)。
一旦你使用AngularFire,你可以使用$firebaseArray
服務從你的數據庫中獲取你的數組,並且像對其他數組一樣對它進行排序。
的$firebaseArray
文檔可以在這裏找到:https://www.firebase.com/docs/web/libraries/angular/guide/synchronized-arrays.html
到這裏看看,看看它是否有助於http://stackoverflow.com/questions/25611356/display-posts-in-descending-posted-order – Lucas