我遇到了 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;
});
我在这里想念什么吗?任何帮助将不胜感激,谢谢。并为我糟糕的英语感到抱歉。