掲示版のコメント機能を作っているのですが以下のエラーが出てしまい解決できません。解決策や、アドバイスくれる嬉しいです
No route matches {:action=>"create", :controller=>"comments", :id=>"5"}, missing required keys: [:post_id]
投稿内容index.html.erb(クリックするとコメントの画面に行きます)
<a href="/posts/<%= post.id %>"><div class="list-group-item border-left border-right border-bottom" style="height: 8rem;"><%= post.shopcontent %></div></a>
コメント画面
h1>投稿詳細ページ</h1> <h3><%= @post.user.name %></h3> <h3><%= @post.shopcontent %></h3> <h2>コメント一覧</h2> <% @comments.each do |c| %> <div> <a href="/users/<%= @post.user.id %>"></a> <%= c.body %> <hr> </div> <% end %> <%= form_with(model: @comment, url: post_comments_path, local: true) do |f| %> <%= f.text_field :body %> <br> <%= f.submit 'コメントする' %> <% end %> <%= link_to "ホームへ戻る", posts_path %>
commentscontroller`
class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) if @comment.save redirect_to post_comments_path else @comments = Comment.all render action: :index end end private def comment_params params.require(:comment).permit(:content) end end
ルーティング
Prefix Verb URI Pattern Controller#Action toppages_index GET /toppages/index(.:format) toppages#index root GET / toppages#index login GET /login(.:format) sessions#new POST /login(.:format) sessions#create logout DELETE /logout(.:format) sessions#destroy signup GET /signup(.:format) users#new users GET /users(.:format) users#index POST /users(.:format) users#create user GET /users/:id(.:format) users#show post_comments POST /posts/:post_id/comments(.:format) comments#create posts GET /posts(.:format) posts#index POST /posts(.:format) posts#create new_post GET /posts/new(.:format) posts#new edit_post GET /posts/:id/edit(.:format) posts#edit post GET /posts/:id(.:format) posts#show PATCH /posts/:id(.:format) posts#update PUT /posts/:id(.:format) posts#update DELETE /posts/:id(.:format) posts#destroy search GET /search(.:format) posts#search
Postモデル
class Post < ApplicationRecord belongs_to :user validates :shopname, presence: true, length: { maximum: 20 } validates :shopaddress, presence: true, length: { maximum: 30 } validates :shopcontent, presence: true, length: { maximum: 300 } has_many :comments end
Commentsモデル
class Comment < ApplicationRecord belongs_to :user belongs_to :post end
調べたところ、/posts/:post_id/comments(.:format) comments#createのpost_idの部分がないからurlを作れないという認識なのですが、そこも認識合ってるか教えてくださると幸いです。
質問攻めで申し訳ありません
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/05 07:45
2021/09/05 09:27
2021/09/05 21:39