存储集合的集合而不是模型?

发布于 2024-12-13 07:10:44 字数 216 浏览 0 评论 0原文

我正在使用一个集合来对相关模型进行分组。所有型号均属于同一类型。

这会导致同一组通用模型产生多个集合。

我需要一种方法来组织这些分组(集合)。

  • 我应该以某种方式将它们放入父集合中吗?
  • 我应该将它们全部设置在父模型中吗?
  • 是否应该将初始分组放入父模型而不是父模型中 收藏?

感谢您的任何见解。

I am using a collection to group related models. All the models are of the same type.

This results in multiple collections for the same general set of models.

I need a way to organize these groupings (collections).

  • Should I put them in a parent collection somehow?
  • Should I set them all in a parent model?
  • Should the initial grouping be done into a parent model instead of a
    collection?

Thanks for any insight.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

错々过的事 2024-12-20 07:10:44

我目前有这个:

appModel -> PageCollection -> PageModel -> StreamCollection -> StreamModel -> StreamItem Collection -> StreamItemModel

您应该查看 Backbone-Relational 看看 HasMany 关系是否适合您:
https://github.com/PaulUithol/Backbone-relational

我的设置在 Backbone 中看起来像这样 -关系:

appModel (HasMany) Pages
PageModel (HasMany) Streams
StreamModel (HasMany) StreamItems

效果很好

I currently have this:

appModel -> PageCollection -> PageModel -> StreamCollection -> StreamModel -> StreamItem Collection -> StreamItemModel

You should look into Backbone-Relational to see if the HasMany relations would work for you:
https://github.com/PaulUithol/Backbone-relational

My setup looks like this in Backbone-Relational:

appModel (HasMany) Pages
PageModel (HasMany) Streams
StreamModel (HasMany) StreamItems

It works nicely

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