在backbone.js中将一个集合添加到另一个集合
是否可以在backbone.js 中添加一个集合作为不同集合的模型?
我有这样的事情:
var Stroke = Backbone.Collection.extend({
model: Point
});
var StrokeCollection = Backbone.Collection.extend({
model: Stroke
});
当我尝试添加到我的笔划集合时:
this.strokeCollection.add(new Stroke);
我收到以下错误:
TypeError: Object false has no method 'bind'
Is it possible to add a collection as the model for a different collection in backbone.js?
I have something like this:
var Stroke = Backbone.Collection.extend({
model: Point
});
var StrokeCollection = Backbone.Collection.extend({
model: Stroke
});
When I try to add to my stroke collection:
this.strokeCollection.add(new Stroke);
I get the following error:
TypeError: Object false has no method 'bind'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使有可能,这也不是一个好主意。集合应该代表模型而不是一组集合。
Even if it is possible, this is not a good idea. A collection is supposed to represent models not a set of collections.