前提・実現したいこと
Ruby on Rails で 非同期(Ajax)のお気に入り機能を実装したいです。
しかし、リロードしないと処理されない状況でrailsサーバーのエラーとして、下記のような @post.id がnilになっていると出ており、受け渡し?が上手く行っていないのか思いつく限り、どうコードを修正しても改善されないので質問させていただきました。
初めての質問となり、大変お手数をおかけいたしますが何卒回答のほどよろしくお願いいたします。
発生している問題・エラーメッセージ
Rails サーバー
ruby
1Completed 500 Internal Server Error in 23ms (ActiveRecord: 2.8ms) 2ActionView::Template::Error (undefined method `id' for nil:NilClass): 3 1: $('#favorites_buttons_<%= @post.id %>').html("<%= j(render partial: 'favorites/favorite', locals: {post: @post}) %>"); 4app/views/favorites/destroy.js.erb:1:in `_app_views_favorites_destroy_js_erb__4163638919559762178_22600' 5/Users/xxx/dazzling/app/views/favorites/destroy.js.erb:1: warning: __FILE__ in eval may not return location in binding; use Binding#source_location instead 6/Users/xxx/.rbenv/versions/2.7.0/lib/ruby/gems/2.7.0/gems/web-console-3.7.0/lib/web_console/exception_mapper.rb:31: warning: in `eval' 7Started GET "/posts/18" for ::1 at 2020-08-02 05:24:45 +0900
googledeveloperツール
Request URL: http://localhost:3000/posts/18/favorites Request Method: POST Status Code: 500 Internal Server Error Remote Address: [::1]:3000 Referrer Policy: strict-origin-when-cross-origin
該当のソースコード
app/views/posts/show.html.erb
ruby
1<h1>口コミ詳細</h1> 2<p>Find me in app/views/posts/show.html.erb</p> 3<% 4 if @post.image? %> 5 <div class="card mb-3"> 6 <svg class="bd-placeholder-img card-img-top" width="100%" height="180" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: Image cap"> 7 <title>Placeholder</title> 8 <rect fill="#868e96" width="100%" height="100%"/> 9 <text fill="#dee2e6" dy=".3em" x="50%" y="50%"><%= @post.image %></text> 10 </svg> 11<% else %> 12 <div class="card-body"> 13 <h5 class="card-title"><%= @post.title %></h5> 14 <p class="card-text">T<%= @post.content %></p> 15 <p class="card-text"><small class="text-muted"><%= @post.created_at %></small></p> 16 <p class="card-text"><small class="text-muted">お気に入り件数:<%= @post.favorites.count %></small></p> 17 <div id="favorites_buttons_<%= @post.id %>"> 18 <%= render partial: 'favorites/favorite', locals: {post: @post} %> 19 </div> 20 </div> 21 </div> 22<% end %>
app/controllers/favorites_controller.rb
ruby
1class FavoritesController < ApplicationController 2 # お気に入り 3 # Favoriteモデルにuser_idとpost_idを格納 4 def create 5 @favorite = current_user.favorites.create(post_id: params[:post_id]) 6 end 7 # お気に入り取り消し 8 # Favoriteモデルのレコードを削除 9 def destroy 10 @favorite = Favorite.find_by(post_id: params[:post_id], user_id: current_user.id) 11 @favorite.destroy 12 end 13end
app/views/favorites/_favorite.html.erb
ruby
1<% if current_user.already_favorited?(@post) %> 2 <%= button_to 'いいねを取り消す', post_favorite_path(@post), method: :delete, remote: true %> 3<% else %> 4 <%= button_to 'いいねを登録する', post_favorites_path(@post), method: :post, remote: true %> 5<% end %>
app/views/favorites/create.js.erb
ruby
1$('#favorites_buttons_<%= @post.id %>').html("<%= j(render partial: 'favorites/favorite', locals: {post: @post }) %>");
app/views/favorites/destroy.js.erb
ruby
1$('#favorites_buttons_<%= @post.id %>').html("<%= j(render partial: 'favorites/favorite', locals: {post: @post}) %>");
補足情報(FW/ツールのバージョンなど)
参考資料:https://qiita.com/naberina/items/c6b5c8d7756cb882fb20
・Ruby -ver 2.7.0 / Rails -ver 5.2.4.3
あなたの回答
tips
プレビュー