2022-09-05から1日間の記事一覧

検索機能の実装

今回は検索機能についての紹介します。 今回のコードはこちらです。 post.controller.rb def search if params[:keyword].present? @posts = Post.search(params[:keyword]).page(params[:page]).per(6) if @posts.length == 0 flash.now[:alert] = '検索し…