我想为每个Backbone类添加一个自定义方法 - 模型,集合,路由器,视图。我怎么能这样做?
这是我到现在为止所做的......
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
的建议答案 0 :(得分:6)
要严格回复此问题,请查看http://jsfiddle.net/dira/bbnSE/
window.debug_factory = function(kind) {
return function(message) {
console.log("I came here: " + kind + " " + " " + message);
}
};
Backbone.Model.prototype.debug = window.debug_factory('model');
Backbone.Collection.prototype.debug = window.debug_factory('collection');
Course = Backbone.Model.extend({});
Courses = Backbone.Collection.extend({model: Course});
c1 = new Course({name: 'c1'});
courses = new Courses();
courses.add(c1);
c1.debug('a');
courses.debug('b');
c1.debug('c');
如果您正在使用它进行调试,我建议使用window.debug函数并使用更重要的消息(“获取”,“渲染”等)作为“我来到这里:模型”不是很有用。