使用id数组过滤和排序主干集合

时间:2013-02-27 07:56:48

标签: javascript backbone.js underscore.js sorting

我对Backbone很陌生,所以我遇到了一些我无法理解的问题。

我有一个有超过100项的Backbone集合。我想用一组id来过滤这些,这很好,但我希望项目的顺序也基于这个数组的项目顺序。那不行。其他排序方法似乎是基于asciibetical,这不是我需要的。是否可以使用此过滤器获取项目,然后按照我定义的顺序将它们放入集合中?

我有一个我过滤的id数组,这个数组看起来像这样:

var dDefaultItems = ['1','2','146','3','4','9','26','8','96','10','11','54','145','273','38'];

收集和过滤的代码如下所示:

var ChannelCollection = Backbone.Collection.extend({        
    fetch : function() {
       var params = _.extend({}, arguments, { 
            data : { 
                "groupnumber" : "1000"
            }
        });
        this.constructor.__super__.fetch.apply(this, [params]);

    },

    model : Channel,

    url : function () {
        return utility.apiUrl('/myurl/tothething');  
    },

    filterData: function(params) {

        this.originalModels = this.models.slice();

        _.each(params, function(val, key){
            if (typeof val !== 'object') val = [ val ];
            this.models = _.filter(this.models, function(model){
                return _.indexOf(val, model.get(key)) !== -1;
            }, this);
        }, this);
        return this.reset(this.models).toJSON();
    },

    parse : function(json) {            

        return json.channelInfoList;
    }

 });

然后我在这个代码的视图中呈现这个(用于定义模型的其他代码和我认为不相关的其他属性,我可能错了,但我想有人会知道我需要什么从这看起来。)

var ChannelListView = Backbone.View.extend({

    initialize: function() {
       var _this = this;

        currentChannelList = new ChannelCollection();

        currentChannelList.once("sync", function() {
           _this.render();
        });

        currentChannelList.fetch();
    },
    render : function() {
      var _this = this;

      $(_this.el).empty();

     dust.render("list-channels", { channelList : currentChannelList.filterData({id: dDefaultItems})} , function(err, html) {

        var $el = $(html).appendTo($(_this.el));
      });  
    }
 });   

1 个答案:

答案 0 :(得分:8)

根据插入顺序自动对骨干集合进行排序,除非您实现Collection#comparator。问题是您的过滤算法没有产生有序输出。

如果只在按id过滤时需要维护有序集合,我建议实现一个单独的方法,因为与按任意属性搜索相比,按id搜索速度要快得多:

filterById: function(idArray) {
  return this.reset(_.map(idArray, function(id) { return this.get(id); }, this));  
}

用法:

collection.filterById(['1', '2', '146', '3', '4', '9', '26', '8', '96', '10', '11', '54',' 145', '273', '38']);