我有许多产品,其中包含与使用会员资格的has_many相关联的许多类别。
我正在尝试创建一个搜索框,其中任何人都可以搜索产品,同时还使用类别下拉列表过滤搜索(因此只能检索具有相关类别的产品)。
thinking_sphinx索引位于Product模型中 我没有收到任何错误,但下拉列表不会影响搜索。
MODEL:
has_many :memberships,:dependent=> :destroy
has_many :categories, :through => :memberships
named_scope :published, :conditions => {:publish => 1}
define_index do
indexes product_name
indexes product_description
indexes publish
indexes memberships.product_id
indexes memberships.category_id
indexes categories.category_name
end
end
CONTROLLER:
@products = Product.search params[:search],:conditions=>{@product.memberships.category_id =>params[:category_product] },:page=> params[:page] || 1,:per_page =>4
VIEW:
form_tag search_path, :method =>:get do
text_field_tag :search, params[:search]
form_tag categories_path, :method => :get do
select_tag"category", options_from_collection_for_select (Category.find (:all, :group=>:id), :id, :category_name,params[:category_product])
end
submit_tag "search", :name => nil
end
答案 0 :(得分:1)
您需要使用属性进行过滤。在你的define_index中使用'has'方法,并在搜索中使用a:with params。类似的东西:
define_index do
…
has categories(:id), :as => categories_id
…
end
,搜索结果为:
Product.search params[:search], :with => { :categories_id => params[:category] }