言語ruby on rails
投稿削除機能実装時にエラー
現在、画像と文が投稿できる簡単なアプリケーションを作成しています。
その際に、投稿した画像、文に対して削除linkをクリックすると以下のエラーが発生します。
ActiveRecord::RecordNotFound in PostsController#show Couldn't find Post with 'id'=25 Extracted source (around line #22): 20 21 def show 22 @post = Post.find(params[:id]) 23 @comment = Comment.new 24 @comments = @post.comments.includes(:user).order("created_at DESC") 25 end Rails.root: /Users/takuya/original/bikerlife-989 Application Trace | Framework Trace | Full Trace app/controllers/posts_controller.rb:22:in `show' Request Parameters: {"id"=>"25"} Toggle session dump Toggle env dump Response Headers: None
本日午前に削除機能実装した際には、エラーが出ていなかったのですが、再度確認するため削除linkをクリックしたらエラーが出たという流れです。
<div class="item-show"> <div class="item-box"> <div class="item-img-content"> <%= image_tag @post.image,class:"item-box-img" %> </div> <span class="name"> <a href="/users/<%= @post.user.id %>"> <span>投稿者</span><%= @post.user.nickname %> </a> </span> <%# <a href="/users/<%= post.user.id %> <%# <p><%= @post.user.nickname %> <h2 class="name"> <%= @post.name %> </h2> <h5> <%= @post.post_text%> </h5> <% if user_signed_in? %> <% if current_user.id == @post.user_id %> <%= link_to "編集", edit_post_path(@post.id), method: :get, class: "item-red-btn" %> <p class="or-text">or</p> <%= link_to "削除", post_path(@post.id), method: :delete, class:"item-destroy" %> <% end %> <% end %> </div> <div class="container"> <% if user_signed_in? %> <%= form_with(model: [@post, @comment], local: true) do |form| %> <%= form.text_area :comment_text, placeholder: "コメントする", rows: "2" %> <%= form.submit "SEND" %> <% end %> <% else %> <strong><p>※※※ コメントの投稿には新規登録/ログインが必要です ※※※</p></strong> <% end %> <div class="comments"> <h4><コメント一覧></h4> <% @comments.each do |comment| %> <p> <strong><%= link_to comment.user.nickname, "/users/#{comment.user_id}" %>:</strong> <%= comment.comment_text %> </p> <% end %> </div> </div> </div>
class PostsController < ApplicationController before_action :authenticate_user!, except: [:index, :show] def index @posts = Post.includes(:user).order("created_at DESC") end def new @post = Post.new end def create @post = Post.new(post_params) if @post.save redirect_to posts_path else render :new end end def show @post = Post.find(params[:id]) @comment = Comment.new @comments = @post.comments.includes(:user).order("created_at DESC") end def edit @post = Post.find(params[:id]) redirect_to posts_path if @post.user != current_user end def update @post = Post.find(params[:id]) redirect_to posts_path if @post.user != current_user if @post.update(post_params) redirect_to post_path(@post.id) else render :edit end end def destroy @post = Post.find(params[:id]) redirect_to posts_path if @post.user != current_user @post.destroy redirect_to post_path end private def post_params params.require(:post).permit(:name, :post_text, :image).merge(user_id: current_user.id) end end
class Post < ApplicationRecord belongs_to :user has_one_attached :image has_many :comments, foreign_key: :post_id, dependent: :destroy with_options presence: true do validates :name validates :image end end
Rails.application.routes.draw do devise_for :users, controllers: { registrations: 'users/registrations', sessions: 'users/sessions' } root to: 'topbikers#index' resources :posts do resources :comments, only: :create end resources :consultations do resources :consultations_comments, only: :create end resources :users, only: [:show, :edit, :update] end
上記の記述にて行っています。
ちなみにコード削除linkを押してエラー画面が表示され、バックボタンから投稿トップページにいくと
先ほど投稿して削除linkが押された、投稿は消えている状態です。
エラーから読みとくに、idは送られているためそれに対応している画像がないのかと思い、直接シークエルプロのテーブルレコードを全て消去しようとしました。
ただ直接消去しようとすると、
「9 行が削除されませんでした。 テーブルを再読み込みして内容が変更されていないことを確認してください。 このテーブルの主キーにエラーの可能性があるのでコンソールを確認してください!」
と出て、直接消去もできません。
コードの記述も確認したのですが、原因が突き詰められない状況です。
お力添えいただけましたら幸いです。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/12 00:34