Backbone.js 分组集合
我有一个包含男性和女性模型的backbone.js 集合。
在我的界面中,我想将它们分成各自的列。是否有内置/推荐的方法在backbone.js集合中进行分组?
现在在我的视图/渲染代码中我正在做
if male
self.el.appendTo(#male)
if female
self.el.appendTo(#female)
还有其他方法吗?也许使用下划线的groupBy?
谢谢。
I have a backbone.js collection with male and female models.
In my interface I want to separate them into their own individual columns. Is there a built in / recommended way to group in backbone.js collection?
Right now in my view / rendering code I'm doing
if male
self.el.appendTo(#male)
if female
self.el.appendTo(#female)
Is there any other way of doing it? Maybe using underscore's groupBy?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按性别过滤集合以获得匹配模型的数组
You could filter the collection by gender to get an array of the matching models