#質問
現在、投稿系アプリを作成しております。
検索機能のところで分からない所があったのでご教授いただけないでしょうか。
active hashを用いてカテゴリー検索をしたいと考えております。
検索項目を入力全て入力すると全てに当てはまる投稿を表示することはできるのですが、項目の一つでも当てはまれば検索結果にヒットするような機能にしたいのですがどのようにすればよろしいでしょうか。
#現状
ransackを用いて、検索機能の実装をしています
reviews_contoroller.rb
class ReviewsController < ApplicationController before_action :set_review_search, only: [:index, :search] def index @reviews = Review.includes(:user).order("created_at DESC").page(params[:page]).per(5) like = Like.new end #他アクション省略 def search @results = @q.result(distinct: true) end private def review_params params.require(:review).permit(:faclity_name, :hotel_type_id, :grade_id, :season_id, :region_id, :student_count_id, :price, :text, :safety, images: []).merge(user_id: current_user.id) end def set_review_search @q = Review.ransack(params[:q]) end end
index.html.erb
<div class="search-box"> <%= search_form_for @q, url: search_reviews_path do |f| %> ホテルタイプ: <%= f.collection_select :hotel_type_id_eq, HotelType.all, :id, :name, class:"search-select-box" %> 学年: <%= f.collection_select :grade_id_eq, Grade.all, :id, :name, class:"search-select-box" %> 季節 <%= f.collection_select :season_id_eq, Season.all, :id, :name, class:"search-select-box" %> 都道府県 <%= f.collection_select :region_id_eq, Region.all, :id, :name, class:"search-select-box" %> 生徒人数 <%= f.collection_select :student_count_id_eq, StudentCount.all, :id, :name, class:"search-select-box" %> <%= f.submit "検索"%> <% end %> </div>
review.rb
class Review < ApplicationRecord extend ActiveHash::Associations::ActiveRecordExtensions belongs_to :hotel_type belongs_to :grade belongs_to :season belongs_to :region belongs_to :student_count belongs_to :user has_many_attached :images #投稿バリデーション with_options presence: true do #省略 with_options length: { maximum: 140 } do #省略 end with_options numericality: { other_than: 1, message: 'を選択してください' } do validates :hotel_type_id validates :grade_id validates :season_id validates :region_id validates :student_count_id end end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/18 01:17