我不能调用超类的渲染
Super = Backbone.View.extend({
render : function(){
//super class code here (unable to call)
return this;
}
});
Sub = Super.extend({
render : function(){
//sub class code here (called)
return this;
}
});
var view = new Sub();
view.render();
我想先调用子类渲染,然后再调用超类渲染。在某些情况下,超类先渲染,然后子类渲染。
那么,是否可以根据用户要求在不更改 Super 类 和不更改函数名称的情况下编写调用超类渲染之前或之后调用超类渲染的子类渲染。
那么,我错过了什么?
提前致谢。