次のように作成された動的テーブルがあります
app.View.FriendRequestTableView = Backbone.View.extend({
tagName: 'table',
className: 'table table-hover',
initialize : function(options) {
this.options = options;
this.render();
},
render: function() {
$(this.el).empty();
this.options.collection.each(function(user){
var row = new app.View.FriendRequestRowView({model:user});
$(this.el).append(row.el);
});
return $(this.el);
}
});
確認したところ、行が適切に構築されていることがわかりましたが、次の行が機能していません
$(this.el).append(row.el);
また、テーブル要素のみが作成されているのを見てきましたが、テーブルは空です。何か案は???