最佳答案
当我重写 Backbone.Model
的 clone()
方法时,有没有办法从我的植入中调用这个重写的方法?就像这样:
var MyModel = Backbone.Model.extend({
clone: function(){
super.clone();//calling the original clone method
}
})