Firebase Data Desc Sorting in Android

前端 未结 15 2452
醉话见心
醉话见心 2020-11-22 07:51

I am storing data in Firebase storage.

Object Comment with attribute timestamp. When I push data from device to Firebase I\'m populating

15条回答
  •  半阙折子戏
    2020-11-22 08:17

    Firebase can order the items in ascending order by a given property and then returns either the first N items (limitToFirst()) or the last N items (limitToLast()). There is no way to indicate that you want the items in descending order.

    There are two options to get the behavior you want:

    1. Use a Firebase query to get the correct data, then re-order it client-side

    2. Add a field that has a descending value to the data

    For the latter approach, it is common to have a inverted timestamp.

    -1 * new Date().getTime();
    

提交回复
热议问题