私はそのような見解を持っています:
(function(views) {
views.FilterView = Backbone.View.extend({
tagName: 'div',
events: {
'click a.remove': 'remove'
},
template: _.template($("#filterViewTemplate").html()),
render: function() {
this.$el.html(this.template());
return this;
},
remove: function (e) {
this.remove();
this.unbind();
}
});
})(app.views);
テンプレートは次のとおりです。
<script type="text/html" id="filterViewTemplate">
<select class="filterByOption">
<option value="Account">Account</option>
<option value="Owner">Owner</option>
</select>
<span class="cell sort">
<input class="filterString cell" type="text" />
</span>
<a href="#" class="btn small remove">Remove</a>
</script>
しかし、クリックするRemove
と、次のエラーが発生します。
Uncaught RangeError: Maximum call stack size exceeded