3

一部のデータを取得するバックボーン コレクションがありますが、each メソッドを使用してコレクションを反復処理しようとすると、

Object [object Array] has no method 'each' 

コレクションのモデルは次のとおりです。

define (['backbone'],function(Backbone){
    return Backbone.Model.extend({
        url:'http://some_url/api/post/',
   });
});//end define

コレクション自体: '

   define (['backbone','models/Post'],function(Backbone,Post){
return Backbone.Collection.extend ({
    model: Post,

    initialize: function (model)
    {
        this.userId = model.userId;
        this.start = model.start;
    },

    url: function ()
    {
        return "http://some_url.com/api/post?userid=" + this.userId + "&start=" + this.start;
    },

    parse: function (response)
    {
        return response;
    }

    });
  });

これは、コレクションを使用するビューをインスタンス化する呼び出しです。

cookieVal = document.cookie.split ("; ");
                posts = new PostCol ({userId:id =   cookieVal[0].split('=')[1],start:1});

                posts.fetch ().success (function (response){
                    post = new Post({collection:response});
                    post.render();
                    console.log (post.el);
                });

コレクションを使用するビューの実装:

 define (['jquery','underscore','backbone','views/Actor'],function($,_,Backbone,Actor){
return Backbone.View.extend ({
    className:'moment mb30',

    render: function ()
    {
        console.log (this.collection);
        this.collection.each (function (model){
            actor = new Actor ({model:model});
            this.$el.append (actor.render().el);
        },this);
        return this;
    }
});
});

それぞれの方法が機能しないのはなぜですか。また、この問題を解決するにはどうすればよいですか。

4

2 に答える 2