查找具有所有关联记录的记录
比如说,
我们有一个“Person”和“Favorite”模型。
“最喜欢的”是这个人喜欢的东西:“音乐”、“视频”、“运动”、“互联网”、“旅行”等。
“最喜欢的”HABTM“人”
“人”HABTM“最喜欢的人”,以及我需要找到的 一个人,列出了所有“收藏夹”。例如,找到一个喜欢“音乐”、“旅行”和“运动”的人。
如何使用 ActiveRecord.find 方法来完成?
Say,
we have a "Person" and "Favorite" models.
"Favorite" is what this person likes: "music", "video", "sport", "internet", "traveling" etc.
"Person" HABTM "Favorites", and "Favorite" HABTM "Persons"
I need to find a Person, that has ALL listed "Favorites. For example, find a person, that likes "music", "traveling" and "sport".
How it can be done, using ActiveRecord.find method ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要这样的东西来查找具有所有最爱的人,而不是任意组合最爱的人。这是基于这样的假设:您有一个最喜欢的对象数组,而不是字符串集合。
Rails 4 兼容解决方案:
You'll need something like this to find people with all favourites rather than any combination of favourites. This is based on the assumption that you have an array of favourite objects, rather than a collection of strings.
Rails 4 compatible solution: