2015-09-11 259 views
1

我在火力地堡數組,我得到這樣的:火力地堡ORDERBY降

var ref = new Firebase(url); 
ref.orderByChild("date").on("child_added", function(obj) { 
    console.log(obj.val()); 
}); 

但是我需要按降序排列。我如何使用Firebase執行此操作?

謝謝!

+1

到這裏看看,看看它是否有助於http://stackoverflow.com/questions/25611356/display-posts-in-descending-posted-order – Lucas

回答