0

这个问题已经被问过好几次了,但没有一个提供的解决方案对我有用。

在这个 Backbone 集合中,我如何访问和循环其模型?

我在下面的代码中尝试了几种方法;包括基于 Mark V. 的答案的补充。

代码也可以在这里找到:http: //jsfiddle.net/LPbsP/3/

(function() {

console.log(Backbone);

window.App = {
    Model: {},
    Collection: {},
    View: {}
};

App.Model.Whatever = Backbone.Model.extend({});

App.Collection.Whatever = Backbone.Collection.extend({
    model: App.Model.Whatever,

    initialize: function(models, options) {
        this.getModels();

        _.bindAll(this, 'getModelsWithBindAll');
        this.getModelsWithBindAll();

        console.log(this);
        console.log(models);
        models.each(function(model) {
            console.log(model);
        });
    },

    getModels: function() {
        console.log('in getModels');
        console.log(this);

        whateverCollection.each(function(model) {
            console.log(model);
            console.log(model.toJSON());
        });
    },

    getModelsWithBindAll: function() {
        console.log('in getModelsWithBindAll');
        console.log(this);

        whateverCollection.each(function(model) {
            console.log(model);
            console.log(model.toJSON());
        });
    }
});

var whateverCollection = new App.Collection.Whatever([
    {
        name: 'jim',
        title: 'boss'
    },
    {
        name: 'tom',
        title: 'worker'
    }
]);

console.log('program code');
console.log(whateverCollection);

})();

结果:

Object (Backbone)

in getModels

r (length: 0, models: Array[0] ... )

Cannot call method 'each' of undefined

以下是我引用的其他问题:

4

1 回答 1

2

有两种方法。

  1. 如果您需要在初始化方法中对它们进行迭代,则将您的初始化方法声明为 initalize(models, options) ,因为 Backbone 将这样调用它。然后像遍历常规数组一样遍历模型参数。这是因为 this.models 在调用 initialize 时还没有被模型填充。

  2. 如果您不需要在初始化方法中进行迭代,那么在定义您的whateverCollection 之后,只需执行以下操作:

     whateverCollection.each(function(model) {    
       console.log(model);    
       console.log(model.toJSON());    
     })    
    
于 2013-09-18T04:43:38.453 回答