ransackを使い検索機能を実装しているのですが、
エラー文は出ていないのですが検索結果が表示されず全ての投稿が表示されたままです。
URLにはposts?q%5Bname_cont%5D=a&commit=検索といったことは出てきています。
検索したいのはpostsテーブルのnameで検索したいです。
class PostsController < ApplicationController def index @q = Post.ransack(params[:q]) @posts = @q.result(distinct: true).includes(:user).order("created_at DESC") @posts = Post.page(params[:page]).per(10).order('updated_at DESC') end def new @post = Post.new end def create @post = Post.create(post_params) if @post.save redirect_to :root else render :new, notice: "画像を選択してください" end end def show @post = Post.find(params[:id]) @comment = Comment.new @comments = @post.comments.includes(:user).order('created_at DESC') end def destroy post = Post.find(params[:id]) if post.user_id == current_user.id post.destroy end redirect_to :root end def edit @post = Post.find_by(id: params[:id]) end def update @post = Post.find_by(id: params[:id]) if @post.update(post_params) redirect_to :root else render :edit end end private def post_params params.require(:post).permit(:text, :image, :name).merge(user_id: current_user.id) end end
class Post < ApplicationRecord belongs_to :user has_many :comments, dependent: :destroy has_many :favorites, dependent: :destroy mount_uploader :image, ImageUploader validates :image, presence: true validates :name, length: { maximum: 30 } end
.wrapper = search_form_for @q do |f| = f.label :name_cont =f.search_field :name_cont = f.submit .pagination= paginate @posts .main - @posts.each do |post| .contents .contents__item = link_to image_tag(post.image.url,:size => '300x200', class: 'post-image'), post_path(post.id) .content-title= post.name.truncate(24, omission: '...') .pagination= paginate @posts
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/17 10:25