前提・実現したいこと
rails初学者です。
現在RailsでSNSのようなアプリケーションを作っています。
タグを付けた投稿を行うこと、それを一覧、詳細、ユーザー詳細ページで閲覧することが可能になったので、次に
タグを付けた投稿を検索する実装をしていました。
その際に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
ActiveRecord::StatementInvalid in Posts#search Showing /Users/mono/projects/rank_top/app/views/posts/search.html.erb where line #6 raised: Mysql2::Error: Unknown column 'posts.tag_ids' in 'where clause' <% end %> <div class="contents row"> <% @posts.each do |post| %> <%= render partial: "post", locals: { post: post } %> <% end %> </div>
該当のソースコード
posts/index.html.erb <%= render 'posts/search' %> <div class="row row-cols md-3"> <% @posts.each do |post| %> <div class="card d-flex justify-content-around m-5" style="width: auto; heigth: auto;"> <div class="card-body border border-primary"> <%= image_tag post.image, :width => '280', :height => '280' if post.image.attached? %> <h4 class="card-title"><%= post.title %></h4> 1位<p class="card-text"><%= post.rank1 %></p> 2位<p class="card-text"><%= post.rank2 %></p> 3位<p class="card-text"><%= post.rank3 %></p> <div class="btn-group"> <button type="button" class="btn btn-5m btn-outline-secondary"> <%= link_to '詳細', post_path(post.id) , method: :get %></button> <button type="button" class="btn btn-5m btn-outline-secondary"> <%=link_to post.user.name, user_path(post.user.id)%></button> </div> <div id="likes_buttons_<%= post.id %>"> <%= render partial: 'likes/like', locals: { post: post} %> </div> <p class="card-text"> <small class="text-muted"><%= post.updated_at %> </small> </p> <% post.tags.each do |tag| %> <span class= 'badge badge-primary'> <%= tag.tag_name %> </span> <% end %> </div> </div> <% end %> </div>
posts/_search.html.erb <%= form_with url: search_posts_path, method: :get, local: true do |form| %> <%= form.text_field :keyword, placeholder: "投稿を検索する", class: "search-input" %> <%= form.submit "検索", class: "search-btn" %> <div class="selection-field"> <%= form.label :tag_id ,'タグ' %> <%= form.collection_select :tag_ids, Tag.all, :id, :tag_name %> </div> <% end %>
post.rb class Post < ApplicationRecord has_one_attached :image belongs_to :user has_many :likes, dependent: :destroy def like_user(user_id) likes.find_by(user_id: user_id) end has_many :comments has_many :post_tag_relations, dependent: :destroy has_many :tags, through: :post_tag_relations validates :title, presence: true validates :rank1, presence: true validates :rank2, presence: true validates :rank3, presence: true def self.search(search) if search != "" Post.where('title LIKE(?)', "%#{search}%").where(tag_ids: search[:tag_ids]) else Post.all end end end
posts_contoroller def index @posts = Post.includes(:user).order('created_at DESC') @likes = Like.where(user_id: current_user) end def search @posts =Post.search(params) end
seed.rb Tag.create([ { tag_name: 'アーティスト' }, { tag_name: '芸能人' }, { tag_name: 'YouTuber' }, { tag_name: 'アニメ' }, { tag_name: 'ドラマ' }, { tag_name: '映画' }, { tag_name: '飲食' }, { tag_name: '乗り物' }, { tag_name: 'インテリア' }, { tag_name: 'PC・ガジェット' }, { tag_name: 'その他' } ])
試したこと
postsにtag_idsがないというエラーかと思い、部分テンプレートを作れば別々の処理になるかと思い、部分テンプレート作成してみましたが、変わらず。
同じエラーで詰まってる人が居るのでは、と思い、検索をしてみるも[rails db:migrate]
で解決してる方しか見つからず、そちらでも解決せず。
indexアクションの@postsにどうにかtag_idsを入れられないかを試してみましたが、方法が見つからずここに質問している形になります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。