initialize: function(){
this.collection = app.RequestLines;
this.subView = app.TransportationLineView;
this.listenTo( this.collection, 'add', this.addOne );
this.listenTo( this.collection, 'reset', this.addAll );
this.collection.fetch();
this.render();
}
在此上下文中,视图将获取数据库上的所有模型。我怎样才能获取属性上的模型过滤器。我已经在我的集合上定义了一个过滤器来执行此操作:
byTransportation: function(){
return this.where( {transportationConfirmation: true} );
}
这是在触发事件添加然后将模型附加到视图时。
答案 0 :(得分:1)
您可以使用public int Heal(your.full.package.name.Character teammate) {
集合方法从后端过滤数据并使用过滤结果更新集合:
parse