セットアップを正しく理解しているかどうかはわかりませんが、BoxModelがあります。
BoxModel = Backbone.Model.extend({
defaults: {
'image':string,
'title':string,
'description':string
}
});
また、BoxModelには子BoxModelを含めることができますか?
boxModel.children = new Collection(); // of box models?
そして、子コレクションを反復処理して、各モデルをテーブル行として表現したいですか?
これがあなたがここで望むものであるならば、私がすることです。ボックスモデルはテーブルであるBoxViewで表され、その子は基本的に行として表されます。したがって、これを次のように定義します。
BoxView = Backbone.View.extend({
tagName: 'table',
className: 'list-items-template', // I just used this name to connect it with your ex.
// I'd probably change it to like, box-table
template: _.template('<tr>
<td><%= image %> </td>
<td><%= title %> </td>
<td><%= description %> </td>
</tr>'),
initialize: function() {
// Note: We've passed in a box model and a box model has a property called
// children that is a collection of other box models
this.box = this.model;
this.collection = this.box.children // Important! Assumes collection exists.
},
render: function() {
this.$el.html(this.addAllRows());
return this;
},
addAllRows: function() {
var that = this;
var rows = '';
this.collection.each(function(box) {
rows += that.template(box.toJSON());
});
return rows;
}
});
// This assumes that whatever BoxModel you have instantiated, it has a property called
// children that is a collection of other BoxModels. We pass this in.
// Get the party started
var myBoxTable = new BoxView({
'model': someBoxModel // Your box model, it has a collection of children boxModels
});
// Throw it into your page wherever.
$('#placeToInsert').html(myBoxTable.render.el());
また、これは基本的に、この例では子boxModelsが視覚的に表されていることを意味することに注意してください。各子(行)に何らかの機能が必要な場合は、テンプレートを使用して視覚的な表現を書き出すのではなく、このaddAllRows()
メソッドを使用して2番目のタイプのBoxModelビューをインスタンス化します。テーブル行であり、適切に委任されたイベントなどのより多くの機能を備えたビュー。