以下のコードのように、アンダースコアを使用して、require.js と text.js で HTML テンプレートをロードしています。
template: _.template(listItemTemplate)
, render: function () {
$(this.el).html(this.template(this.model.toJSON));
return this;
}
tvListItemTemplate.html
<h4><%= _id%></h4>
console.log(this.model.toJSON()) を実行すると、次のように出力されます。
しかし、コンソールには次のエラーが表示されます。
理由がわかりません