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 に答える