前提・実現したいこと
投稿したものの詳細ページを表示させようとしたらエラーがおきました。
rails routesではprototype_pathだったのであっているはずなのですが
発生している問題・エラーメッセージ
ActionController::UrlGenerationError in Prototypes#index
該当のソースコード
show.html.erb <main class="main"> <div class="inner"> <div class="prototype__wrapper"> <p class="prototype__hedding"> <%= "プロトタイプのタイトル"%> </p> <%= link_to "by プロトタイプの投稿者", root_path, class: :prototype__user %> <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> <% if user_signed_in? && current_user.id == prototype.user_id %> <div class="prototype__manage"> <%= link_to "編集する", edit_prototype_path, class: :prototype__btn %> <%= link_to "削除する", root_path, method: :delete, class: :prototype__btn %> <% end %> </div> <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> <div class="prototype__image"> <%= image_tag.prototype.image, class: :card__img %> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%= "プロトタイプのキャッチコピー" %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= "プロトタイプのコンセプト" %> </p> </div> </div> <div class="prototype__comments"> <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> <%= form_with local: true do |f|%> <div class="field"> <%= f.label :concept, "コメント" %><br /> <%= f.text_field :concept %> </div> <div class="actions"> <%= f.submit "送信する", class: :form__btn %> </div> <% end %> <%# // ログインしているユーザーには上記を表示する %> <ul class="comments_lists"> <%# 投稿に紐づくコメントを一覧する処理を記述する %> <li class="comments_list"> <%= " コメントのテキスト "%> <%= link_to "( ユーザー名 )", root_path, class: :comment_user %> </li> <%# // 投稿に紐づくコメントを一覧する処理を記述する %> </ul> </div> </div> </div> </main>
prototypes_controller.rb class PrototypesController < ApplicationController #CSRF保護を無効にする protect_from_forgery with: :null_session before_action :move_to_index, except: [:index, :show] def index @prototype = Prototype.all end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path(@prototype) else render :new @prototype = Prototype.includes(:user) end end def show @prototype = Prototype.find(params[:id]) end def edit @prototype = Prototype.find(params[:id]) end def update prototype = prototype.find(params[:id]) prototype.update(prototype_params) if prototype.save redirect_to root_path(@prototype) else @prototype = @user.prototype.includes(:user) render :edit end end def destroy prototype = Prototype.find(params[:id]) prototype.destroy redirect_to root_path end private def prototype_params params[:prototype].permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
試したこと
投稿した内容の詳細を表示させようとしたのですがActionController::UrlGenerationErrorとなりました。
rails routesコマンドでは詳細ページはprototype_pathになるのですがそれでもエラーとなりました。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。