所以基本上我要做的就是有一个layoutView,在layoutView里面有一个用layoutView包装的子视图。问题是layoutView还应该从模型中呈现信息。
像这样:http://i.stack.imgur.com/oLODv.png
到目前为止,我没有任何喜悦或成功实现这一目标,因为在我看来,观点在某种程度上是单一的和同质的,因此不可能是不相交的
对于layoutView,我有以下模板:
<div id="someLayoutView">
Hi, <%= userName %>
<div id = "someRegion"></div>
<div>Some other information needed from model: <%= someVariable %></div>
</div>
#someRegion显示subView。
这是可能的还是有任何类似的方法来实现这种嵌套/包装视图?