前提・実現したいこと
投稿内容の編集機能を付けていてルーティングエラーが出てしまいました。
route.rbはresoucesでアクションを定義しているのでどこでエラーが出ているのかわかりません。
発生している問題・エラーメッセージ
Routing Error No route matches [PATCH] "/prototypes" Rails.root: /Users/pc名前/projects/アプリ名 Application Trace | Framework Trace | Full Trace Routes
該当のソースコード
route.rb Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :prototypes do resources :comments, only: :create end resources :users, only: :show end edit.html.erb <div class="main"> <div class="inner"> <div class="form__wrapper"> <h2 class="page-heading">プロトタイプ編集</h2> <%= render partial: "prototypes/form" ,locals: { prototypes: @prototype } %> <%# 部分テンプレートでフォームを表示する %> </div> </div> </div> _form.html.erb <%= 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 %> prototypes.controller.rb class PrototypesController < ApplicationController before_action :authenticate_user! before_action :move_to_index def index @prototypes = Prototype.all end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path else render :new end end def destroy @prototype = Prototype.find(params[:id]) if @prototype.destroy redirect_to root_path end end def show @prototype = Prototype.find(params[:id]) @comment = Comment.new @comments = @prototype.comments end def edit @prototype = Prototype.find(params[:id]) end def update @prototype = Prototype.find(params[:id]) if @prototype.update(prototype_params) redirect_to prototype_path else render :edit end end private def prototype_params params.require(:prototype).permit(:title,:image,:catch_copy,:concept).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
試したこと
コントローラーのupdateアクションに飛んでないかなど考えコメントアウトなどしてみましたが
エラー文が変わらないことからやはりroute.rbでのエラーだと思います。
よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/09 15:59