我希望我足够清楚,否则请我澄清。
我想删除与主模板一致的最终创建视图...</p>
我确实尝试了以下实现,但没有成功。
// main-template.html
<div id=""project>
<div class="main-template">
<div id="view1"></div>
<div class="foldable-block">
<div id="view2"></div>
<div id="view3"></div>
</div>
</div>
</div>
//mainView.js
define([
"js/views/view1",
"js/views/view2",
"js/views/view3",
"text!templates/main-template.html"
], function (View1, View2, View3, mainTemaplte) {
var MainView = Backbone.View.extend({
initialize: function ()
{
this.$el.html(Mustache.render(mainTemaplte));
this.render();
},
el: $("#project"),
render: function ()
{
var options = this.options;
this.view1 = new View1(options);
this.view2 = new View2(options);
this.view3 = new View3(options);
}
});
return MainView;
});
//view1.js
define([… ], function (..) {
var View1 = Backbone.View.extend({
el: $("#view1"),
initialize: function () {
console.log(this.$el) // []
setTimeout( function () {
console.log(this.$el) // []
}, 2000);
}
});
return View1;
});
您可以从评论中看到的问题在view1.js
(this.$el) // []
从我的 js 控制台它可以工作:
$("#view1") // <div>….</div>
我的目标是:
1)当我加载 mainView.js 模块时,我想创建一个模板来附加我的视图(view1、view2、view3)
2)当我触发删除视图时,每个 DOM 都附加了视图, 应该删除。
3)当我再次调用mainView.js
模块时,应该重新创建模板。
如果您有其他想法要建议,请发表。
感谢@nikoshr 建议this.$el
,在view1.j
, 中定义了,当我在中调用渲染时,view1.js
它被this.$el
正确填充,
但它没有附加到文档正文。
如何在不使用 append 或类似的 jquery 方法的情况下实现它main-template.html
?
这是我的渲染功能:
render: function ()
{
this.$el.html(Mustache.render(myTemplate, this.view);
}