如何使用 activerecord 限制连接右侧的记录数

发布于 2024-11-28 10:01:37 字数 126 浏览 0 评论 0原文

我想列出数据库中的所有用户。对于每个用户,我还想显示该用户图库中的前 3 张图像。我想避免为每个用户进行单独的查询来获取用户的前 3 张图像。

有没有一种不需要陷入 SQL 特定语法的 activerecord-y 方法?

I want to list all the users in the database. For each user I also want to show the 3 top images in that user's gallery. I want to avoid making a separate query for each user to get the user's top 3 images.

Is there an activerecord-y way of doing this that doesn't require dropping down into SQL specific syntax?

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

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

发布评论

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

评论(1

时间你老了 2024-12-05 10:01:37

您可以使用包含。如果 Rails 2:

User.find(:all, :include => :images)

Rails 3

User.include(:images)

现在,您可以在每个用户的单个查询中获得所有用途的图像。

You can use include. If rails 2:

User.find(:all, :include => :images)

Rails 3

User.include(:images)

Now you have images for all your uses in a single query for each user.

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