如何在Marionette 3+中实现弃用的CompositeView功能?
正如最新的Marionette文档所述:
CompositeView
已弃用。 您应该使用replaceElement
期权Region.show
和渲染CollectionView
为区域内的一个View
来实现这一功能。
我仍然无法理解现在如何实现CompositeView
功能。
以前, CompositeView
非常适合使用这样的模板:
<script id="table-template" type="text/html">
<table>
<% if (items.length) { %>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<% } %>
<tbody></tbody>
<tfoot>
<tr>
<td colspan="3">some footer information</td>
</tr>
</tfoot>
</table>
new MyCompositeView({
template: "#table-template",
templateContext: function() {
return { items: this.collection.toJSON() };
}
// ... other options
});
如果我们决定使用LayoutView
而不是CompositeView
那么我们需要手动编写大量事件绑定(例如,根据集合中的项目数来显示/隐藏表头)。 这使事情变得更加困难。
如果没有CompositeView
有没有干净而复杂的方法?
感谢您的任何帮助或建议。
它看起来像木偶3将摆脱一些概念,使整个框架更简单,更容易理解。
3中的Marionette.View将包含来自ItemView和LayoutView的功能。 CompositeView不推荐使用RegionManager,它现在包含在View中。
v2 --> v3
View -> AbstractView
ItemView, LayoutView -> View
这是一个简单的示例应用程序:
var color_data = [ { title:'red' }, { title:'green' }, { title:'blue' } ];
var Color = Backbone.Model.extend({
defaults: { title: '' }
});
var Colors = Backbone.Collection.extend({
model: Color
});
var ColorView = Mn.View.extend({
tagName: 'tr',
template: '#colorTpl'
});
var ColorsView = Mn.CollectionView.extend({
tagName: 'tbody',
childView: ColorView
});
var AppView = Mn.View.extend({
template: '#appTpl',
templateContext: function(){
return {
items: this.collection.toJSON()
};
},
ui: {
input: '.input'
},
regions: {
list: {
selector: 'tbody',
replaceElement: true
},
},
onRender: function(){
this.getRegion('list').show(new ColorsView({
collection: this.collection
}));
},
events: {
'submit form': 'onSubmit'
},
onSubmit: function(e){
e.preventDefault();
this.collection.add({
title: this.ui.input.val()
});
this.ui.input.val('');
}
});
var appView = new AppView({
collection: new Colors(color_data)
});
appView.render().$el.appendTo(document.body);
<script src='http://libjs.surge.sh/jquery2.2.2-underscore1.8.3-backbone1.3.2-radio1.0.4-babysitter0.1.11-marionette3rc1.js'></script>
<script id="colorTpl" type="text/template">
<td><%=title%></td>
<td style="background-color:<%=title%>"> </td>
</script>
<script id="appTpl" type="text/template">
<table width="100%">
<% if(items.length) { %>
<thead>
<tr>
<th width="1%">Title</th>
<th>Color</th>
</tr>
</thead>
<% } %>
<tbody></tbody>
<tfoot>
<tr>
<td colspan="2">
<form><input type="text" class="input" autofocus><input type="submit" value="Add Color"></form>
</td>
</tr>
</tfoot>
</table>
</script>
链接地址: http://www.djcxy.com/p/32987.html
上一篇: How to achieve deprecated CompositeView functionality in Marionette 3+?