🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

1回答

933閲覧

削除機能エラーについて

TAKANOTAKUYA

総合スコア3

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

0クリップ

投稿2021/03/11 12:44

言語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 行が削除されませんでした。 テーブルを再読み込みして内容が変更されていないことを確認してください。 このテーブルの主キーにエラーの可能性があるのでコンソールを確認してください!」

と出て、直接消去もできません。

コードの記述も確認したのですが、原因が突き詰められない状況です。

お力添えいただけましたら幸いです。

宜しくお願い致します。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

ぱっと見て変なのは def destory の redirect_to post_path です。
posts_path の間違いではないでしょうか。

post_path でエラーにならずid=25にリダイレクトされてるのは不思議ですが。

投稿2021/03/11 16:09

neko_daisuki

総合スコア2090

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

TAKANOTAKUYA

2021/03/12 00:34

回答ありがとうございます。 posts_pathに変えたら問題なく削除機能が実行できました。 数時間詰まってしまっていたので助かりました。 ありがとうございました。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問