2
我想爲每個骨幹類 - 模型,集合,路由器,視圖添加自定義方法。我怎樣才能做到這一點?backbone.js:如何向每個骨幹類添加自定義方法
下面是我在做什麼,直到如今....
Backbone.Router.prototype.method1 = function() {
console.log("I came here: router");
};
Backbone.View.prototype.method1 = function() {
console.log("I came here: view");
};
Backbone.Model.prototype.method1 = function() {
console.log("I came here: model");
};
Backbone.Collection.prototype.method1 = function() {
console.log("I came here: collection");
};
我猜必須有一個更好,更優雅的方式來做到這一點?
更新
這裏是我是如何實現它最後。感謝有關記錄@dira建議