環境 ruby on rails6
gem ransack
indexページで検索結果を出したいのですが、検索ボタンを押しても検索結果が表示されないです。
どこか問題がある部分がありますでしょうか?
URLのクエリには入力値が反映されているので単純に結果のみ表示されていないように思えるのですが、原因がよくわかりません。
よろしくお願いいたします。
contoroller
1 def index 2 @customers = Customer.page(params[:page]).per(30) 3 @q = Customer.ransack(params[:q]) 4 @q.build_condition if @q.conditions.empty? 5 @result = @q.result(distinct: true) 6 end
view
1 <%= search_form_for @q, html: {class: 'hogehoge'} do |f|%> 2 3 <%= f.condition_fields do |c| %> 4 <%= c.attribute_fields do |a| %> 5 <%= a.attribute_select associations: [] %> 6 <% end %> 7 8 <%= c.hidden_field :p, value: "cont" %> 9 <%= c.value_fields do |v| %> 10 <%= v.search_field :value, placeholder: '検索ワードを入力' %> 11 <% end %> 12 <% end %> 13 <%= f.submit '検索' %> 14 <% end %>
view
1<% @result.each do |result| %> 2... 3<% end %>
1)二つのviewのどちらが結果表示のviewですか?
2)仮にしたの方だとして、肝心の結果表示部分が記載されていないので判断できないでs
あなたの回答
tips
プレビュー