考虑一个主干应用程序,它有一个select
类别列表,下面有一个文件表。所有文件,无论它们属于哪个类别,都在App.collection.files
集合中。当用户选择一个新类别时,我想过滤表格以仅显示那些匹配的文件。
我想完全在客户端做到这一点。每次选择新类别时,我都不想从服务器获取新的文件列表。
我计划到一个App.collection.files.where({category_id: xx})
内部App.View.Files.render()
来完成过滤本身。
触发/响应事件以使其正常工作的最佳 Backbone-y 方式是什么?
我正在玩的一个想法是另一个集合,其中包含过滤后的文件,但不确定这是否是最好的方法。
App.View.FilesPage = Backbone.View.extend({
template: App.utils.template('files-page'),
className: 'container-fluid',
initialize: function(){
this.render();
},
render: function(){
this.$el.html(this.template());
this.$el.find('.categories').append(
new App.View.Categories({collection:App.collection.categories}).el
);
this.$el.find('.files table').append(
new App.View.Files({collection:App.collection.files}).el
);
return this;
}
});
App.View.Categories = Backbone.View.extend({
tagName: 'select',
events: {
'change': 'onChange'
},
initialize: function(){
this.$el.attr('size', this.collection.length + 1);
this.render();
},
render: function(){
var option = function(value, text, isSelected){
return $('<option></option>', {'value':value, 'text':text});
};
this.$el.html(option(0, 'All Documents'));
this.$el.append(
this.collection.invoke(function(){
return option(this.get('category_id'), this.get('title'));
})
).val(0);
return this;
},
onChange: function(event){
}
});
App.View.Files = Backbone.View.extend({
tagName: 'tbody',
initialize: function(){
this.render();
},
render: function(){
this.$el.html(
this.collection.invoke(function(){
return new App.View.File({model:this}).el;
})
);
return this;
}
});