我的rails应用程序中有以下模型实体:
class Artist < ActiveRecord::Base
has_many :albums
end
class Album < ActiveRecord::Base
belongs_to :artist
has_many :tracks
end
class Track < ActiveRecord::Base
belongs_to :album
end
我正在尝试在Album实体的索引视图中实现一个搜索表单,我需要选择artist.name以我的搜索参数开头的所有相册。我已经成功处理直接模型搜索,但是这种情况,必须验证父属性来选择子元素,这会让人头疼。
我已经阅读了Ransacker文档,但没有找到与此相关的任何内容:(
答案 0 :(得分:0)
为了解决这个问题,我创建了一个文件_search.html.slim,其中包含“常规搜索逻辑”,允许“简单”搜索(没有关联)和复杂搜索(带关联): / p>
= search_form_for @search, url: request.original_url do |f|
= f.condition_fields do |c|
.field
= c.attribute_fields do |a|
- if local_assigns.has_key? :associations
= a.attribute_select associations: associations
- else
= a.attribute_select
= c.predicate_select compounds: false, only: [:cont, :not_cont, :eq, :lteq, :gteq, :lt, :gt]
= c.value_fields do |v|
= v.text_field :value
.form-actions
= f.submit 'Search', class: 'btn btn-primary'
我在索引文件中用作
= render 'search', associations: [:artist]
传递我想要搜索的关联,或者只是
= render 'search'
如果没有关联
我的控制器看起来像
def index
@search = @albums.includes(:artist).search(params[:q])
@albums = @search.result(distinct: true).paginate(per_page: 10, page: params[:page])
@search.build_condition
end