has_many :通过两个值的查询

发布于 2024-12-22 22:36:21 字数 336 浏览 0 评论 0原文

假设我有:

class Post
  has_many :tags, :through => :taggings
  has_many :taggings
end

请注意,没有 :include。现在假设我想检索同一查询中的所有标记和标签。我怎么能这么做呢?

我正在寻找类似的东西:

taggings = post.taggings(:include => tags) # doesn't work

我可以进行自定义查询或使用 :include 添加第三个关联到 Post,但这两种感觉都不对。

Let's say I have:

class Post
  has_many :tags, :through => :taggings
  has_many :taggings
end

Notice there's no :include. Now say I want to retrieve all taggings and tags in the same query. How could I do that?

I'm looking for something like:

taggings = post.taggings(:include => tags) # doesn't work

I could make a custom query or add a third association to Post with an :include, but neither feels right.

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

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

发布评论

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

评论(1

难理解 2024-12-29 22:36:21

我认为您可以像使用模型类一样在关联代理上使用 includes

taggings = post.taggings.includes(:tag)

I think you can use includes on the association proxy as you would with the model class:

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