前提・実現したいこと
commentを保存したい。
発生している問題・エラーメッセージ
Routing Error No route matches [POST] "/prototypes/12"
該当のソースコード
app/views/prototypes/show.html
ruby
1<main class="main"> 2 <div class="inner"> 3 <div class="prototype__wrapper"> 4 <p class="prototype__hedding"> 5 <%= @prototype.title %> 6 </p> 7 <%= link_to "by #{@prototype.user.name}", root_path, class: :prototype__user %> 8 <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> 9 <% if user_signed_in? && current_user.id == @prototype.user_id %> 10 <div class="prototype__manage"> 11 <%= link_to "編集する", edit_prototype_path(@prototype.id), class: :prototype__btn %> 12 <%= link_to "削除する", prototype_path, class: :prototype__btn, method: :delete%> 13 </div> 14 <% end %> 15 <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> 16 <div class="prototype__image"> 17 <%= image_tag @prototype.image %> 18 </div> 19 <div class="prototype__body"> 20 <div class="prototype__detail"> 21 <p class="detail__title">キャッチコピー</p> 22 <p class="detail__message"> 23 <%= @prototype.catch_copy %> 24 </p> 25 </div> 26 <div class="prototype__detail"> 27 <p class="detail__title">コンセプト</p> 28 <p class="detail__message"> 29 <%= @prototype.concept %> 30 </p> 31 </div> 32 </div> 33 <div class="prototype__comments"> 34 <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> 35 <% if user_signed_in? %> 36 <%= form_with local: true do |f|%> 37 <div class="field"> 38 <%= f.label :text, "コメント" %><br /> 39 <%= f.text_field :text %> 40 </div> 41 <div class="actions"> 42 <%= f.submit "送信する", class: :form__btn %> 43 </div> 44 <% end %> 45 <% end %> 46 <%# // ログインしているユーザーには上記を表示する %> 47 <ul class="comments_lists"> 48 <%# 投稿に紐づくコメントを一覧する処理を記述する %> 49 <li class="comments_list"> 50 <%= " コメントのテキスト "%> 51 <%= link_to "( ユーザー名 )", root_path, class: :comment_user %> 52 </li> 53 <%# // 投稿に紐づくコメントを一覧する処理を記述する %> 54 </ul> 55 </div> 56 </div> 57 </div> 58</main>
config/routes.rb
ruby
1Rails.application.routes.draw do 2 devise_for :users 3 root to:'prototypes#index' 4 5 resources :prototypes do 6 resources :comments, only: :create 7 end 8 9end
ルーティング
Prefix Verb URI Pattern Controller#Action new_user_session GET /users/sign_in(.:format) devise/sessions#new user_session POST /users/sign_in(.:format) devise/sessions#create destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy new_user_password GET /users/password/new(.:format) devise/passwords#new edit_user_password GET /users/password/edit(.:format) devise/passwords#edit user_password PATCH /users/password(.:format) devise/passwords#update PUT /users/password(.:format) devise/passwords#update POST /users/password(.:format) devise/passwords#create cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel new_user_registration GET /users/sign_up(.:format) devise/registrations#new edit_user_registration GET /users/edit(.:format) devise/registrations#edit user_registration PATCH /users(.:format) devise/registrations#update PUT /users(.:format) devise/registrations#update DELETE /users(.:format) devise/registrations#destroy POST /users(.:format) devise/registrations#create root GET / prototypes#index prototype_comments POST /prototypes/:prototype_id/comments(.:format) comments#create prototypes GET /prototypes(.:format) prototypes#index POST /prototypes(.:format) prototypes#create new_prototype GET /prototypes/new(.:format) prototypes#new edit_prototype GET /prototypes/:id/edit(.:format) prototypes#edit prototype GET /prototypes/:id(.:format) prototypes#show PATCH /prototypes/:id(.:format) prototypes#update PUT /prototypes/:id(.:format) prototypes#update DELETE /prototypes/:id(.:format) prototypes#destroy
models/prototype
class Prototype < ApplicationRecord belongs_to :user has_many :comments , dependent: :destroy has_one_attached :image validates :title , presence: true validates :catch_copy , presence: true validates :concept , presence: true validates :image, presence: true end
models/comment
class Comment < ApplicationRecord belongs_to :user belongs_to :prototype validates :text , presence: true end
db/✖️✖️✖️✖️_create_comments
class CreateComments < ActiveRecord::Migration[6.0] def change create_table :comments do |t| t.text :text t.timestamps t.references :user, foreign_key: true t.references :prototype, foreign_key: true end end end
controllers/comments_contoroller
class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) if @comment.save redirect_to prototype_comments_path(@comment.prototype) else @prototype = @comment.prototype @comments = @prototype.comments render "prototype/show" end end private def comment_params params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) end end
試したこと
app/views/prototypes/show.htmlのコメント送信するform_withの部分にurlが書かれていないからルートが正しく通っていないと考察し、ルーティングのパスを参考に記述したが変わらなかった。
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.4
ruby 2.6.5
確かにルーティングの /prototypes/:id にPOSTがないですね。
というところは把握の上でしょうか。
設計的には何で処理させるつもりですか?
prototype_comments POST /prototypes/:prototype_id/comments(.:format) comments#create
で処理したいと思うのですが、うまくルートが組めません。この返答で問題ないでしょうか?
よろしくお願いいたします。
resourcesだけでいけそうには思いますが、ひとまず手動で書いてみては?
https://railsguides.jp/routing.html
post '/prototypes/:id', to: 'comments#create'
ルーティングに入力して実行しました。
https://gyazo.com/faf602b57df82521efc4c13ea99295d2
と表示されました。今度はコメントが空になっているのか、paramsがないのかという意味だと思うのですが、どうでしょうか?
あとはデバッグですね。
そうですね。ルーティングには成功していますのでデバッグを頑張ってみます。
回答1件
あなたの回答
tips
プレビュー