前提・実現したいこと
ルーティングエラーを解決したい。
スクールの実装を行っています。
編集機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
Routing Error No route matches [PATCH] "/prototypes"
該当のソースコード
class PrototypesController < ApplicationController before_action :set_prototype, except: [:index, :new, :create] before_action :authenticate_user!, except: [:index, :show] before_action :contributor_confirmation, only: [:edit, :update, :destroy] prototypes_controller def index @prototypes = Prototype.includes(:user) 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 end end def show # @comment = Comment.new # @comments = @prototype.comments.includes(:user) end def edit # @prototype = Prototype.find(params[:id]) end def update # prototype = Prototype.find(params[:id]) # prototype.update(prototype_params) if @prototype.update(prototype_params) redirect_to root_path(@prototype) else 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 set_prototype @prototype = Prototype.find(params[:id]) end def contributor_confirmation redirect_to root_path unless current_user == @prototype.user end end
show.html <main class="main"> <div class="inner"> <div class="prototype__wrapper"> <p class="prototype__hedding"> <%= @prototype.title %> </p> <%= link_to "by #{@prototype.user.name}", user_path(@prototype.user), class: :prototype__user %> <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> <% if current_user == @prototype.user%> <div class="prototype__manage"> <%= link_to "編集する", edit_prototype_path(@prototype), class: :prototype__btn %> <%= link_to "削除する", prototype_path(@prototype), method: :delete, class: :prototype__btn %> </div> <% end %> <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> <div class="prototype__image"> <%= image_tag @prototype.image %> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%= @prototype.catch_copy %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= @prototype.concept %> </p> </div> </div> <div class="prototype__comments"> <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> <%# <% if user_signed_in? %> <%# <%= form_with model: [@prototype, @comment], local: true do |f|%> <%# <div class="field"> <%= f.label :text, "コメント" %><br /> <%# <%= f.text_field :text %> <%# </div> <div class="actions"> %> <%# <%= f.submit "送信する", class: :form__btn %> <%# </div> %> <%# <% end %> <%# // ログインしているユーザーには上記を表示する %> <%# <ul class="comments_lists"> <% @comments.each do |comment| %> <%# 投稿に紐づくコメントを一覧する処理を記述する %> <%# <li class="comments_list"> <%= comment.text%> <%# <%= link_to "(#{comment.user.name})", user_path(comment.user), class: :comment_user %> <%# </li> <% end %> <%# // 投稿に紐づくコメントを一覧する処理を記述する %> <%# </ul> %> </div> </div> </div> </main>
routes Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :prototypes, only: [:new, :create, :show, :edit, :update, :destroy] do resources :comments, only: :create end resources :users, only: :show end
部分テンプレート_form.html <%= form_with model: @prototype, url: prototypes_path, local: true do |f|%> <div class="field"> <%= f.label :title, "プロトタイプの名称" %><br /> <%= f.text_field :title %> </div> <div class="field"> <%= f.label :catch_copy, "キャッチコピー" %><br /> <%= f.text_area :catch_copy, class: :form__text %> </div> <div class="field"> <%= f.label :concept, "コンセプト" %><br /> <%= f.text_area :concept, class: :form__text %> </div> <div class="field"> <%= f.label :image, "プロトタイプの画像" %><br /> <%= f.file_field :image %> </div> <div class="actions"> <%= f.submit "保存する", class: :form__btn %> </div> <% end %>
試したこと
必要のないところも反応しているかと思い、コメントアウトなどして見ましたが変わらない
パスの内容も間違っているかと思い確認しましたが、合っていそうです。
ルーティングにも記述忘れてるかと思い確認しました。
初めて投稿しました、よろしくお願い致します。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー