你好,我想在卓别林js中使用ect模板。我无法按照卓别林样板集成车把的方式集成 ect 模板。请帮忙谢谢。
我找到了一种方法,您只需根据应用程序基视图类中 ect 模板的语法覆盖渲染函数。我是这样做的
render : function() {
var $templateHtml, html, templateFunc;
if (this.disposed) {
return false;
}
var data = { message : 'Hello, World!' };
html = ECT({ root : 'js/templates' }).render(this.templateName,data)
if (!this.noWrap) {
this.$el.html(html);
}
else {
$templateHtml = $(html);
if ($templateHtml.length > 1) {
throw new Error('There must be a single top-level element when ' + 'using `noWrap`.');
}
this.undelegateEvents();
this.setElement($templateHtml, true);
}
return this;
}