2

我遇到了 marionette.js 的一些问题,花了几个小时查看错误源,但我找不到它,我的布局没有正确渲染它的模板,它只是在模板的第一个 div 内渲染元素。

这是实际的模板 headerlayout.html:

   <div class="header-logo-bg relative" id="header_logo">
        <a href="/" title="Apps Title">
            <div class="logo"></div>
        </a>
    </div>

    <div id="home_btn">
        <a href="/">
            <div class="back_to_all_modules">
                Back to<br>
                All Modules
            </div>
        </a>
    </div>


    <div class="header_menu" id="header_menu">

    </div>

但渲染的结果只是这样:

<div>
<a href="/" title="Apps Title">
    <div class="logo"></div>
</a>

这是我的主干布局:

define([
    'marionette',
    'modules/header/views/menulayout',
    'tpl!modules/header/templates/headerlayout.html'
], function (Marionette, MenuLayout, layoutTemplate) {


    var HeaderLayout = Backbone.Marionette.Layout.extend({
        template: layoutTemplate,

        regions: {
            menuRegion: '#header_menu'
        },
        initialize: function () {
            console.log('initializing header layout');
        },
        onRender: function () {
            console.log('onRender headerlayout');
            var menuLayout = new MenuLayout();
            this.menuRegion.show(menuLayout);
        }
    });

    return HeaderLayout;
});

这是我从主干应用程序调用的标题布局:

define([
    'marionette',
    'modules/header/views/headerlayout'
], function (Marionette, HeaderLayout) {

    // set up the app instance
    var myApp = new Backbone.Marionette.Application();

    // configuration, setting up regions, etc ...
    myApp.addRegions({
        header: '#header',
        content: '#content',
        footer: '#footer',
        dialog: '#dialog'
    });

    myApp.addInitializer(function () {
        var headerLayout = new HeaderLayout();
        myApp.header.show(headerLayout);
    });

    // export the app from this module
    return myApp;
});

我在这里想念什么吗?任何帮助将不胜感激,谢谢。并为我糟糕的英语感到抱歉。

4

2 回答 2

0

在您的布局中,尝试将onRender函数替换为onShow.

于 2013-07-19T11:05:53.380 回答
0

啊哈哈。

已经解决了。

Marionette 需要一个模板对象,而不是文本模板。无论出于何种原因,您都给它一段文本而不是一个对象。是的,您的代码应该可以工作..但是我们有同样的问题并且没有使用 tpl!我们正在使用文本的功能!

这将起作用:

define(['underscore'
    'marionette',
    'modules/header/views/menulayout',
    'text!modules/header/templates/headerlayout.html'
], function (_,Marionette, MenuLayout, layoutTemplate) {


    var HeaderLayout = Backbone.Marionette.Layout.extend({
        template: _.template(layoutTemplate),
于 2013-08-02T01:35:48.660 回答