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});
}
這是當事件添加被觸發那麼當一個模型被追加到視圖。
你想收集來從服務器只篩選結果,或過濾收集客戶端從服務器獲取所有數據後..?如果是第一種情況,顯然你必須在服務器端實現邏輯。 –
這將是第二種情況。 –