Sphinx 使用 Thinkingsphinx 搜索相关的 has_many

发布于 2024-07-27 16:46:53 字数 161 浏览 2 评论 0原文

假设,我有一个属于建筑模型的房间模型。 建筑物与类别有 has_many 关系。

我正在尝试弄清楚如何对 Room 模型进行索引,以便搜索category_id = 1 将返回任何恰好分配有该类别的建筑物中的任何房间。 同样,一座建筑物可以有多个类别。

谢谢!

Hypothetically, I have a Room model that belongs to a Building model. Buildings has a has_many relationship with categories.

I'm trying to figure out how to index the Room model so that a search for category_id = 1 will return any room, in any building that happens to have that category assigned to it. Again, a building can have multiple categories.

thanks!

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

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

发布评论

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

评论(1

木格 2024-08-03 16:46:54

首先,您需要在 Post 模型中设置如下所示的索引:

define_index do
  # fields go here

  # the important attribute for your filter:
  has building.categories(:id), :as => :category_ids
end

至于搜索:

Room.search 'query', :with => {:category_ids => 1}

如果这不完全是您想要的,请告诉我。

Firstly, you'll want to set up your index something like the following in your Post model:

define_index do
  # fields go here

  # the important attribute for your filter:
  has building.categories(:id), :as => :category_ids
end

As for searching:

Room.search 'query', :with => {:category_ids => 1}

Let me know if this isn't quite what you're after.

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