假设我有一个big collection,并且我想将此大集合的一个子集用于不同的视图。

我尝试了以下代码,但由于filtered collection实际上是一个新代码,并且没有引用BigCollection instance,因此它不起作用。

我的问题是:
如何获得作为BigCollection instance子集的集合?

这是我的代码。请查看评论以获取更多信息:

// bigCollection.js
var BigCollection = Backbone.Collection.extend({
    storageName: 'myCollectionStorage',
    // some code
});

// firstView.js
var firstView = Marionette.CompositeView.extend({
    initialize: function(){
        var filtered = bigCollection.where({type: 'todo'});
        this.collection = new Backbone.Collection(filtered);
        // the issue is about the fact
        // this.collection does not refer to bigCollection
        // but it is a new one so when I save the data
        // it does not save on localStorage.myCollectionStorage
    }
});

最佳答案

使用BigCollection进行过滤收集,如下所示:

    // firstView.js
    var firstView = Marionette.CompositeView.extend({
        initialize: function(){
            var filtered = bigCollection.where({type: 'todo'});
            this.collection = new BigCollection(filtered);
            // now, it will save on localStorage.myCollectionStorage
        }
    });

10-06 15:45