最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Backbone.js comparator function, how can I implement descending order? - Stack Overflow

programmeradmin1浏览0评论

I have a simple parator function on a Backbone.js collection.

parator: function (topic) {
        return topic.get('lastReply');
    },

This is the correct field to sort. It's a date field. I would like it to be sorted in desc order. Is there an easy way to reverse the order? Perhaps I should ditch this function and just sort the collection in prior to rendering it? Any ideas or tips are of course appreciated. Thanks all.

I have a simple parator function on a Backbone.js collection.

parator: function (topic) {
        return topic.get('lastReply');
    },

This is the correct field to sort. It's a date field. I would like it to be sorted in desc order. Is there an easy way to reverse the order? Perhaps I should ditch this function and just sort the collection in prior to rendering it? Any ideas or tips are of course appreciated. Thanks all.

Share Improve this question asked Nov 2, 2011 at 15:38 HcabnettekHcabnettek 12.9k38 gold badges129 silver badges192 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

If it's a JavaScript "Date" field, you could do this:

 parator: function(topic) {
   return - topic.get('lastReply').getTime();
 }

That'd return the negative of the timestamp, so that newer timestamps (bigger numbers) would e before older ones.

For a string-valued field this'd be tricky; you'd need to do something like "invert" the string character by character, or something.

发布评论

评论列表(0)

  1. 暂无评论