How can I sort a Meteor collection by time of insertion?

前端 未结 2 954
暗喜
暗喜 2020-12-02 14:26

I am working on my first project using Meteor, and am having some difficulty with sorting.

I have a form where users enter aphorisms that are then displayed in a li

相关标签:
2条回答
  • 2020-12-02 14:40

    Assuming that the date_created is in a valid date format along with the timestamp, You should insert the parsed value of date_created using Date.parse() javascript function, which gives the number of milliseconds between January 1, 1970 and date value contained in date_created.

    As a result of that, the most recently added record will contain greater value of date_created than the record inserted before it.

    Now when fetching the records, sort the cursor in descending order of the date_created parameter as:

     Aphorisms.find({}, {sort: {date_created: -1}});
    

    This will sort records from newer to older.

    Hope this helps.

    0 讨论(0)
  • 2020-12-02 14:41

    I've found the following to be a cleaner solution:

       Template.list.aphorisms = function () {
          return Aphorisms.find().fetch().reverse();
       };
    

    Given that entire collection already exists in the reverse order that you would like, you can simply create an array of all the objects and reverse the order.

    0 讨论(0)
提交回复
热议问题