我想覆盖 Backbone 模型中的默认 fetch() 方法,因此仅在需要时调用它。
像这样的东西:
Account.Check = Backbone.Model.extend({
model : Account.Item,
url : Settings.Url.checkAccount,
fetch : function(options) {
if (someCondition()) {
// do some stuff
} else {
super.fetch(options);
}
}
});
我的问题是如何在// do some other stuff部分中提供与默认 fetch() 方法相同的行为?