admin管理员组文章数量:1345115
I need to extend the backbone.collection with a collection of functions:
example:
var collection1 = Backbone.Collection.extend({});
var collection2 = Backbone.Collection.extend({});
should have the following custom methods:
console.log(collection1.method1); // function () {}
console.log(collection1.method2); // function () {}
On the other hand
var collection3 = Backbone.Collection.extend({});
should not have these methods.
console.log(collection3.method1); // undefined
How can I extend the Backbone.Collection just for collection1 and collection2 and not for collection3?
I need to extend the backbone.collection with a collection of functions:
example:
var collection1 = Backbone.Collection.extend({});
var collection2 = Backbone.Collection.extend({});
should have the following custom methods:
console.log(collection1.method1); // function () {}
console.log(collection1.method2); // function () {}
On the other hand
var collection3 = Backbone.Collection.extend({});
should not have these methods.
console.log(collection3.method1); // undefined
How can I extend the Backbone.Collection just for collection1 and collection2 and not for collection3?
Share Improve this question asked Jul 30, 2012 at 13:08 Lorraine BernardLorraine Bernard 13.5k23 gold badges85 silver badges138 bronze badges2 Answers
Reset to default 10Do you mean something like this:
var CustomCollection = Backbone.Collection.extend({
method1: function() {},
method2: function() {}
});
var collection1 = CustomCollection.extend({});
var collection2 = CustomCollection.extend({});
var collection3 = Backbone.Collection.extend({});
Following the Marionette example you should add properties or methods to the prototype property of an object class:
Anyway the following code is equivalent to @anto_byrma.
But the advantage of this approach is that you can extend collection or model or view in the same way.
var obj = {
method1: function() {},
method2: function() {}
};
var collection1 = Backbone.Collection.extend({});
var collection2 = Backbone.Model.extend({});
var collection3 = Backbone.Collection.extend({});
_.extend(collection1.prototype, obj);
_.extend(collection2.prototype, obj);
本文标签: javascriptthe best way to extend a BackboneCollectionViewModelsStack Overflow
版权声明:本文标题:javascript - the best way to extend a Backbone.CollectionViewModels - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799148a2540987.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论