我试图将此 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;
}