この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;
}