関数のコレクションを使用して 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
collection3 ではなく、collection1 と collection2 だけに Backbone.Collection を拡張するにはどうすればよいですか?