我正在努力获得最终的布局......
但是我的左列(collectionView)不想显示panelLayout(LayoutView)。是否可以有一个childView:这是一个LayoutView(如下例所示)而不是ItemView(http://marionettejs.com/docs/v2.4.2/marionette.collectionview.html#collectionviews-childview)
class panelLayoutView extends Marionette.LayoutView
template: Templates['panel']
regions:{
bannerRegion: "#banner-region"
contentRegion: "#content-region"
}
class leftColumnCollectionView extends Marionette.CollectionView
className: "leftColumn column"
childView: panelLayoutView
childViewContainer: "leftColumn"
答案 0 :(得分:0)
是。使用LayoutView
或任何其他木偶视图类型作为childView
的{{1}}绝对没有错。