存储集合的集合而不是模型?
我正在使用一个集合来对相关模型进行分组。所有型号均属于同一类型。
这会导致同一组通用模型产生多个集合。
我需要一种方法来组织这些分组(集合)。
- 我应该以某种方式将它们放入父集合中吗?
- 我应该将它们全部设置在父模型中吗?
- 是否应该将初始分组放入父模型而不是父模型中 收藏?
感谢您的任何见解。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我目前有这个:
您应该查看 Backbone-Relational 看看 HasMany 关系是否适合您:
https://github.com/PaulUithol/Backbone-relational
我的设置在 Backbone 中看起来像这样 -关系:
效果很好
I currently have this:
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:
It works nicely