在backbone.js中将一个集合添加到另一个集合

发布于 2024-12-26 15:28:08 字数 395 浏览 0 评论 0原文

是否可以在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活雷疯 2025-01-02 15:28:08

即使有可能,这也不是一个好主意。集合应该代表模型而不是一组集合。

Even if it is possible, this is not a good idea. A collection is supposed to represent models not a set of collections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文