使用带有卓别林的ECT模板

时间:2013-09-27 09:35:40

标签: chaplinjs

您好我想在Chaplin js中使用ect模板。根据Chaplin锅炉板,我无法按照Handlebar的方式集成ect模板。请帮助谢谢。

1 个答案:

答案 0 :(得分:1)

我找到了解决方法,你需要根据应用程序基础视图类中的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;
}