我需要使用一组函数来扩展backbone.collection:
例子:
var collection1 = Backbone.Collection.extend({});
var collection2 = Backbone.Collection.extend({});
应该有以下自定义方法:
console.log(collection1.method1); // function () {}
console.log(collection1.method2); // function () {}
另一方面
var collection3 = Backbone.Collection.extend({});
不应该有这些方法。
console.log(collection3.method1); // undefined
如何仅为 collection1 和 collection2 而不是为 collection3 扩展 Backbone.Collection?