前提・実現したいこと
ありがちですが、RailsでTwitterクローンを作成中で、作成したMicropost(投稿)をUserがお気に入りに登録できる機能を追加して、Micropostを作成し、「Favorite」ボタンを押してお気に入りに登録しようとすると、下記のエラーメッセージが表示されて登録ができません。(既にお気に入り登録済みのMicropostで「Unfavorite」を押した場合も同様で、お気に入り解除もできず)
プログラミング初心者で、自分で調べてみても行き詰ってしまい、困っています。どんな些細なことでもヒントをご教示お願い致します。
発生している問題・エラーメッセージ
ActiveRecord::RecordNotFound in FavoritesController#create Couldn't find Micropost with 'id'= Extracted source (around line #3): class FavoritesController < ApplicationController def create micropost = Micropost.find(params[:micropost_id]) current_user.favorite(micropost) flash[:success] = 'お気に入りに追加しました。' redirect_back(fallback_location: root_path)
該当のソースコード
Ruby
1routes.rb 2 3Rails.application.routes.draw do 4 root to: "toppages#index" 5 6 get 'login', to: 'sessions#new' 7 post 'login', to: 'sessions#create' 8 delete 'logout', to: 'sessions#destroy' 9 10 get 'signup', to: 'users#new' 11 resources :users, only: [:index, :show, :new, :create] do 12 member do 13 get :followings 14 get :followers 15 end 16 end 17 18 resources :users, only: [:index, :show, :new, :create] do 19 member do 20 get :likes 21 end 22 end 23 24 resources :microposts, only: [:create, :destroy] 25 resources :relationships, only: [:create, :destroy] 26 resources :favorites, only: [:create, :destroy] 27end
favorites_controller.rb class FavoritesController < ApplicationController def create micropost = Micropost.find(params[:micropost_id]) current_user.favorite(micropost) flash[:success] = 'お気に入りに追加しました。' redirect_back(fallback_location: root_path) end def destroy micropost = Micropost.find(params[:micropost_id]) current_user.unfavorite(micropost) flash[:success] = 'お気に入りを解除しました。' redirect_back(fallback_location: root_path) end end
_favorite_button.html.erb <% if current_user.favorites?(micropost) %> <%= form_with(model: current_user.favorites.find_by(micropost_id: micropost.id), local: true, method: :delete) do |f| %> <%= hidden_field_tag :micropost_id %> <%= f.submit 'Unfavorite', class: 'btn btn-danger btn-sm' %> <% end %> <% else %> <%= form_with(model: current_user.favorites.build, local: true) do |f| %> <%= hidden_field_tag :micropost_id %> <%= f.submit 'Favorite', class: 'btn btn-primary btn-sm' %> <% end %> <% end %>
_micropost.html.erb <ul class="list-unstyled"> <% microposts.each do |micropost| %> <li class="media mb-3"> <img class="mr-2 rounded" src="<%= gravatar_url(micropost.user, { size: 50 }) %>" alt=""> <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 class="row"> <% if current_user == micropost.user %> <%= link_to "Delete", micropost, method: :delete, data: { confirm: "You sure?" }, class: "btn btn-danger btn-sm" %> <% end %> <%= render "favorites/favorite_button", micropost: micropost %> </div> </div> </li> <% end %> <%= paginate microposts %> </ul>
_users.html.erb <% if users.any? %> <ul class="list-unstyled"> <% users.each do |user| %> <li class="media"> <img class="mr-2 rounded" src="<%= gravatar_url(user, { size: 50 }) %>" alt=""> <div class="media-body"> <div> <%= user.name %> </div> <div> <p><%= link_to 'View profile', user_path(user) %></p> </div> </div> </li> <% end %> </ul> <%= paginate users %> <% end %>
show.html.erb <div class="row"> <aside class="col-sm-4"> <div class="card"> <div class="card-header"> <h3 class="card-title"><%= @user.name %></h3> </div> <div class="card-body"> <img class="rounded img-fluid" src="<%= gravatar_url(@user, { size: 500 }) %>" alt=""> </div> </div> <%= render 'relationships/follow_button', user: @user %> </aside> <div class="col-sm-8"> <ul class="nav nav-tabs nav-justified mb-3"> <li class="nav-item"><a href="<%= likes_user_path(@user) %>" class="nav-link <%= 'active' if current_page?(likes_user_path(@user)) %>">Favorites <span class="badge badge-secondary"><%= @count_favorites %></span></a></li> <li class="nav-item"><a href="<%= user_path(@user) %>" class="nav-link <%= 'active' if current_page?(user_path(@user)) %>">Microposts <span class="badge badge-secondary"><%= @count_microposts %></span></a></li> <li class="nav-item"><a href="<%= followings_user_path(@user) %>" class="nav-link <%= 'active' if current_page?(followings_user_path(@user)) %>">Followings <span class="badge badge-secondary"><%= @count_followings %></span></a></li> <li class="nav-item"><a href="<%= followers_user_path(@user) %>" class="nav-link <%= 'active' if current_page?(followers_user_path(@user)) %>">Followers <span class="badge badge-secondary"><%= @count_followers %></span></a></li> </ul> <%= render 'microposts/microposts', microposts: @microposts %> </div> </div>
試したこと
最初はパラメータが間違っているかと思い、「favorites_controller.rb」の(params[:micropost_id])を「:favorite id」等に修正を試みましたが、直りませんでした。
次にお気に入り(もしくは削除)対象のidが見つからないため発生しているエラーかと思いましたが、routes.rbおよびfavorites_controller.rbの記述は間違いないでしょうか?
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
DB:MySQL
FW:Ruby on Rails5.2.2
コーディング環境:AWS Cloud9
バージョン管理システム:Git/GitHub
API用サーバー:Heroku
回答1件
あなたの回答
tips
プレビュー