我在某处犯了一个愚蠢的错误,我无法渲染基本主干视图。有人可以指出这段代码有什么问题吗?
var view = new Backbone.View({
el: 'body',
template: '<p>this is my new template</p>',
render: function() {
console.log('rendering myself');
this.$el.html(this.template);
return this;
}
});
view.render();
PS console.log 是空的。