backbone.jsを使用して簡単なRSSアプリケーションを開発しようとしています。私はこのバックボーンを使用しています.js tutorial。私は、テンプレートを定義するときに2行目(テンプレート)に次のエラーが表示されます。 tagName: "li"がチュートリアルで定義されている理由を教えてもらえますか?uncaught TypeError:未定義のbackbone.jsのメソッド 'replace'を呼び出すことができません
uncaught TypeError: Cannot call method 'replace' of undefined backbone.js
Javscript
window.SourceListView = Backbone.View.extend({
tagName:"li",
template: _.template($('#tmpl_sourcelist').html()),
initialize:function() {
this.model.bind("change", this.render, this);
this.model.bind("destroy", this.close, this);
},
render:function (eventName) {
$(this.$el).html(this.template(this.model.toJSON()));
return this;
},
close:function() {
$(this.el).unbind();
$(this.el).remove();
}
});
HTML
<script type="text/template" id="tmpl_sourcelist">
<div id="source">
<a href='#Source/<%=id%>'<%=name%></a>
</div>
</script>
おかげであなたは右ここにあなたのエラーを取得している
$ el.html(this.template()) – beNerd
これは2行目でエラーになります(テンプレート:_テンプレート($# 'tmpl_sourcelist' ).html())、)。あなたは何を推薦しているのか分かりません。 – jsp