View = Backbone.View.extend({
initialize: function() {
el: $('body');
this.template = "<div></div>";
this.model = new Model;
this.render();
}
)
我在一个项目中发现了这个代码,并且在初始化代码中被el: $('body');
弄糊涂了。
起初我认为这只是错字,而且必须是
View = Backbone.View.extend({
el: $('body'),
initialize: function() {
this.template = "<div></div>";
this.model = new Model;
this.render();
}
)
但后来我在其他几个文件中找到了它。
设置el
或只是胡说八道是否是某种'hacky'方式?