Sunspot/Solr 和 Rails 的单表继承

发布于 2024-12-14 18:48:53 字数 686 浏览 0 评论 0原文

我在 Rails 应用程序中有以下类:

class Post
  include Mongoid::Document
  include Sunspot::Mongoid

  belongs_to :user

  searchable do
    text :name
    string :user_id
  end
end

class Post::Image < Post
  searchable do
    text :location
    time :taken_at
  end
end

class Post::Link < Post
  searchable do
    text :href
  end
end

据我所知,调用以下应该可以工作。

Post.search do
  fulltext('something')
  with(:user_id, user.id)
end

但事实并非如此。它返回一个空结果。调用 Post::Link.search 也不起作用:

# => Sunspot::UnrecognizedFieldError: No field configured for Post::Link with name 'user_id'

有什么建议吗?

I have following classes in a Rails app:

class Post
  include Mongoid::Document
  include Sunspot::Mongoid

  belongs_to :user

  searchable do
    text :name
    string :user_id
  end
end

class Post::Image < Post
  searchable do
    text :location
    time :taken_at
  end
end

class Post::Link < Post
  searchable do
    text :href
  end
end

As far as I know, calling following should just work.

Post.search do
  fulltext('something')
  with(:user_id, user.id)
end

But it does not. It returns an empty result. Calling Post::Link.search does also not work:

# => Sunspot::UnrecognizedFieldError: No field configured for Post::Link with name 'user_id'

Any suggestions?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文