前提・実現したいこと
よくある機能ですがrailsを使用しいいね機能の実施でボタンを設置したいのです。
アプリの機能としては投稿をしてその投稿をほかのユーザーがいいねする流れです。
いいね機能を実施したいページに行くとエラーが発生します。
発生している問題・エラーメッセージ
NoMethodError in Bookposts#index
undefined method `id' for nil:NilClass
https://i.gyazo.com/05125f0132dc581013c78287119ef1ea.png
該当のソースコード
controller
class BookpostsController < ApplicationController
before_action :require_user_logged_in, only: [:index, :show]
before_action :correct_user, only: [:destroy]
def index
@pagy, @bookposts = pagy(Bookpost.order(id: :desc), items: 25)
end
def show
@bookpost = Bookpost.find(params[:id])
end
def new
@bookpost = Bookpost.new
end
def create
@bookpost = current_user.bookposts.build(bookpost_params)
if @bookpost.save
flash[:success] = '投稿しました。'
redirect_to @bookpost
else
@pagy, @bookposts = pagy(current_user.bookposts.order(id: :desc))
flash.now[:danger] = '投稿に失敗しました。'
render 'toppages/index'
end
end
def destroy
@bookpost.destroy flash[:danger] = "投稿を削除しました。" redirect_to @bookpost
end
private
def bookpost_params
params.require(:bookpost).permit(:content, :title)
end
def correct_user
@bookpost = current_user.bookposts.find_by(id: params[:id])
unless @bookpost
redirect_to root_url
end
end
end
class LikesController < ApplicationController
before_action :require_user_logged_in, only: [:create, :destroy]
def create
bookpost = Bookpost.find(params[:like_id])
current_user.like(bookpost)
flash[:success] = "投稿をいいねしました。"
redirect_back(fallback_location: root_path)
end
def destroy
bookpost = Bookpost.find(params[:like_id])
current_user.unlike(bookpost)
flash[:danger] = "いいねを解除しました"
redirect_back(fallback_location: root_path)
end
end
_like_button.html.erb
<% if current_user.liking?(bookpost) %>
<%= form_with(model: current_user.likes.find_by(bookpost_id: bookpost.id), method: :delete) do |f| %>
<%= hidden_field_tag :like_id, bookpost.id %>
<%= f.submit "いいね解除ボタン", class: "btn btn-danger w-auto" %>
<% end %>
<% else %>
<%= form_with(model: current_user.likes.build) do |f| %>
<%= hidden_field_tag :like_id, bookpost.id %>
<%= f.submit "いいねボタン", class: "btn btn-primary w-auto" %>
<% end %>
<% end %>
bookposts/index.html.erb
<div class="text-center"> <h1>投稿一覧</h1> </div><%= render 'bookposts/bookposts', bookposts: @bookposts %>
<%= render 'likes/like_button', bookpost: @bookpost %>
試したこと
サイトで調べたり、スペルミスなどがないか確認いたしました。
補足情報(FW/ツールのバージョンなど)
rails 6.0
aws仕様
ここにより詳細な情報を記載してください。
初心者なので何かと至らないところが多いかと思いますが何卒よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。