0

我试图将此 jQuery 模板转换为 underscorejs 模板,但它为什么不起作用是没有意义的。谁能解释为什么?

     el: $('#contents'),
    template: _.template( MenuTemplate ),
    //template: $('#item-tmpl').template(),

    render: function ()
    {
    this.$el.empty();

    //$.tmpl(this.template, this.model.toArray()).appendTo(this.el);
    // Old jquery template


    //this.$el.html( this.template( this.model.toArray()).appendTo(this.el) );
    //underscore template

        return this;
    }
4

1 回答 1

1

你对模板的使用有点偏离。尝试这个:

el: $('#contents'),
template: _.template(MenuTemplate),

render: function ()
{
    this.$el.empty();

    this.$el.html(this.template(this.model.toArray()));

    return this;
}
于 2013-03-15T18:54:23.630 回答