国、都市、場所、性別、年齢、生年月日などに基づいて、ユーザーが他のタスクを検索できる検索フォームを作成したいと思います。これが私の検索フォームです...
<%= form_for(@othertask, url: "/other_task", :html =>{:method => :post}) do |f| %>
<%= select_tag "country", options_for_select([], params[:country]), {:multiple => false, :class => "countries", :'data-country' => "IN", :id => "countries_states1"} %>
<%= select_tag :state, options_for_select([], params[:state]), { :class => "states", :'data-country' => "countries_states1", :'data-state' => ""} %>
<%= text_field_tag :city, params[:city], :placeholder => "City"%>
<%= text_field_tag :dob, params[:dob], :placeholder => "date of birth", :id => "dp2" %>
<%= select_tag :highlyeducation, options_for_select(["ME/MTech","MCom","MCA","BE/BTech","MBA","BCA/BSc","BCom"], params[:higheducation]), {:multiple => false} %>
<%= radio_button_tag :gender,'Male', params[:male] %>Male
<%= radio_button_tag :gender,'Female', params[:female] %>Female <br/><br/>
<%= f.submit "Search", class: "btn btn-large" %>
これが私のコントローラーです-
def create
if @other_tasks = Micropost.joins(:user).where('users.city' => params[:city], 'users.country' => params[:country])
render 'index'
else
@other_tasks = []
render 'index'
end
end
ユーザーは、0、1、2、またはすべてのフィールドに入力して検索できます。このために私がすべてのタスクをフェッチするためにすべての可能な組み合わせを作るならば、それは書くためにたくさんのクエリを必要とします。1つのクエリのみを使用して、ユーザー入力に基づいてタスクをフェッチするにはどうすればよいですか。