嵌套木偶区域,布局和视图

时间:2012-09-30 16:04:06

标签: backbone.js marionette

我正在尝试将我的Marionette视图与应用程序区域和布局结合使用,但我似乎无法在布局中获取嵌套视图以进行渲染。

修改:我希望在OptionsView中呈现BreadcrumbsViewNavigationLayout,这些应在导航区域中呈现。但是,根本不渲染导航区域。控制台没有显示任何错误。

我的结构如下:

- Navigation region
  - Navigation layout
    - Options region 
    - Breadcrumbs region
- Content region

ItemView分配到导航区域可按预期工作。

App = new Backbone.Marionette.Application();
App.addRegions({
    'nav': '#nav',
    'content': '#content'
});

var NavigationLayout = Backbone.Marionette.Layout.extend({
    template: '#nav-template',
    regions: {
        'breadcrumbs': '#breadcrumbs',
        'options': '#options'
    }
});

var BreadcrumbsView = Backbone.Marionette.ItemView.extend({
    template: '#breadcrumbs-template'
});

var OptionsView = Backbone.Marionette.ItemView.extend({
    template: '#options-template'
});

var ContentView = Backbone.Marionette.ItemView.extend({
    template: '#content-template'
});

App.addInitializer(function(options) {
    var navigationLayout = new NavigationLayout();

    App.nav.show(navigationLayout);
    App.content.show(new ContentView());

    navigationLayout.breadcrumbs.show(new BreadcrumbsView());
    navigationLayout.options.show(new OptionsView());
});

$(function() {
    App.start();
});

可以找到简化的测试用例here

1 个答案:

答案 0 :(得分:18)

好的,终于找到了问题:您无法在布局中命名区域options

布局中定义的所有区域都直接附加到布局实例。所以,这样定义的区域如下:


Layout.extend({
  regions: {
    options: "#options"
  }
});

最终将layoutInstance.options设置为Region实例。这是一个问题,因为Backbone.View定义并使用options用于其他目的。

将区域重命名为现有关键字或任何现有视图使用的属性以外的任何内容都将解决此问题。


Layout.extend({
  regions: {
    optionRegion: "#options"
  }
});

在这里工作JSFiddle:http://jsfiddle.net/tegon/64ovLf64/