Display posts in descending posted order

前端 未结 18 1288
南方客
南方客 2020-11-22 11:47

I\'m trying to test out Firebase to allow users to post comments using push. I want to display the data I retrieve with the following;

fbl.child         


        
18条回答
  •  礼貌的吻别
    2020-11-22 11:57

    I did this by prepend.

    query.orderByChild('sell').limitToLast(4).on("value", function(snapshot){
        snapshot.forEach(function (childSnapshot) {
            // PREPEND
        });
    });
    

提交回复
热议问题