前提・実現したいこと
コメント投稿機能を作成しています。
コメントを投稿しようするとエラーになってしまいます。
発生している問題・エラーメッセージ
NameError in PostCommentsController#create undefined local variable or method `post_comment_params' for #<PostCommentsController:0x0000000003fb35f8> Did you mean? post_comment_parms def create post_image = PostImage.find(params[:post_image_id]) comment = current_user.post_comments.new(post_comment_params) comment.post_image_id = post_image.id comment.save redirect_to post_image_path(post_image)
該当のソースコード
class PostCommentsController < ApplicationController def create post_image = PostImage.find(params[:post_image_id]) comment = current_user.post_comments.new(post_comment_params) comment.post_image_id = post_image.id comment.save redirect_to post_image_path(post_image) end def destroy end private def post_comment_parms params.require(:post_comment).permit(:comment) end end
<div> <p>コメント件数:<%= @post_image.post_comments.count %></p> <% @post_image.post_comments.each do |post_comment| %> <p><%= image_tag('sample-author1.jpg') %></p> <%= post_comment.user.name %> <%= post_comment.created_at.strftime('%Y/%m/%d') %><%= post_comment.comment %> <% end %> </div> <div> <%= form_with(model:[@post_image, @post_comment], local: true) do |f| %> <%= f.text_area :comment, rows:'5',placeholder: "コメントをここに" %> <%= f.submit "送信する" %> <% end %> </div>
補足情報(FW/ツールのバージョンなど)
Rails 5.2.6
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。