前提・実現したいこと
ツイッターのいいね機能を実装しています。
かれこれ10時間このエラーと戦っていますが解決できずご教授お願いします。
発生している問題・エラーメッセージ
undefined local variable or method `post' for #<#<Class:0x0000000001ae8ac0>:0x00007fa7887f1160> エラー <li class = "media-right"> → <% if current_user.liking?(post) %> <%= form_for(current_user.favorites.find_by(like_id: post.id), html:{method: :delete}) do |f| %> <%= hidden_field_tag :like_id, post.id %> <%= f.submit "いいね" , class: 'btn btn-warning'%>
該当のソースコード
<ul class="media-list"> <% microposts.each do |micropost| %> <div class = "media"> <li class="media-body"> <div class="media-left"> <img class="media-object img-rounded" src="<%= gravatar_url(micropost.user, { size: 50 }) %>" alt=""> </div> <div class="media-body"> <div> <%= link_to micropost.user.name, user_path(micropost.user) %> <span class="text-muted">posted at <%= micropost.created_at %></span> </div> <div> <p><%= micropost.content %></p> </div> <div> </div> <div> <% if current_user == micropost.user %> <%= link_to "Delete", micropost, method: :delete, data: { confirm: "You sure?" }, class: 'btn btn-danger btn-xs' %> <% end %> </div> </div> </li> <li class = "media-right"> <% if current_user.liking?(post) %> <%= form_for(current_user.favorites.find_by(like_id: post.id), html:{method: :delete}) do |f| %> <%= hidden_field_tag :like_id, post.id %> <%= f.submit "いいね" , class: 'btn btn-warning'%> <% end %> <% else%> <%= form_for(current_user.favorites.build) do |f| %> <%= hidden_field_tag :like_id, post.id %> <%= f.submit "いいねする?" , class: 'btn btn btn-light'%> <% end %> <% end %> </li> </div> <% end %> <%= paginate microposts %> </ul>
class FavoritesController < ApplicationController before_action :require_user_logged_in def create post = Micropost.find(params[:like_id]) current_user.like(post) flash[:success] = 'いいねしました' end def destroy post = Micropost.find(params[:like_id]) current_user.unlike(post) flash[:success] = 'いいね外した' end end
has_many :favorites has_many :likings, through: :favorites, source: :like has_many :reserve_of_favorite, class_name: 'Favorite', foreign_key: 'like_id' has_many :be_likings, through: :reserve_of_favorite, source: :user ~~ ~~ def like(other_post) self.favorites.find_or_create_by(like_id: other_post.id) end def unlike(other_post) favorite = self.favorites.find_by(like_id: other_post.id) favorite.destroy if favorite end def liking?(other_post) self.likings.include?(other_post) end
試したこと
メソッドエラーということだと思い、postというローカル変数を用意したつもりですが解決しませんでした。
またエラーコードのpostは CRUDの [POST]なのかなと思い、routes.rbなども確認しましたが、特に変わりはありませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/22 05:27
2020/08/22 05:31
2020/08/22 05:35
2020/08/22 05:41