:include 对 ActiveRecord 实例有效吗?

发布于 2024-11-05 15:32:22 字数 399 浏览 0 评论 0原文

用于预加载的 :include 的所有示例均用于类级别查询。我在我的模型实例上尝试了它,但它仍然发出了一堆查询 - 它适用于实例方法吗?

 #in controller
 @emails = person.sent_emails(:include => [:recipient])

 #in view
 render @emails

 # _email.html.erb partial
 <h1><%= email.recipient.name %></h1>
 <p>
 <%= email.content %>
 </p>

 #still issues a select * for emails, N+1 for recipients :/

All the examples of :include for eager loading are for class-level querying. I tried it on my model instance and it still issued a bunch of queries - does it work on instance methods?

 #in controller
 @emails = person.sent_emails(:include => [:recipient])

 #in view
 render @emails

 # _email.html.erb partial
 <h1><%= email.recipient.name %></h1>
 <p>
 <%= email.content %>
 </p>

 #still issues a select * for emails, N+1 for recipients :/

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

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

发布评论

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

评论(1

じее 2024-11-12 15:32:22

我知道它看起来有点像 Rails 2,可能有更好的 Rails 3 方式,但这确实有效。

@emails = person.sent_emails.find(:all, :include => :recipient)

编辑:请参阅 BaroqueBobcat 的评论,了解 Rails 3 中更好的方法

It looks a bit Rails 2ish I know and there may be a better Rails 3 way but this does work.

@emails = person.sent_emails.find(:all, :include => :recipient)

Edit: See the comment by BaroqueBobcat for a better method in Rails 3

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