Rails アプリでの検索に pg_search gem を使用しています。私のアプリの主なモデルは次のとおりです。
class Book < ActiveRecord::Base
include PgSearch
pg_search_scope :search_everywhere, against: [:author, :title, :description]
end
それは完璧に機能しました
@books = Book.search_everywhere(params[:search])
BooksController の index アクションで。次に、gem 'globalize' を追加しました。
translates :title, :author, :publisher, :description, :fallbacks_for_empty_translations => true
そして今、検索は機能していません。
Book.search_everywhere(params[:search])
フィールドが見つかりません。globalize gem で pg_search gem を使用した人はいますか?