画像投稿機能をつけ、その詳細画面からコメントを直接入力し表示させる機能を実装していたのですが、コメントを投稿した際に以下のエラーメッセージが出てきてしまい投稿を完了させることができません。
ルーティング設定
Rails.application.routes.draw do devise_for :users root "main#index" resources :main do resources :post_comments, only: :create collection do get 'posted' end end end
PostCommentsコントローラー設定
class PostCommentsController < ApplicationController def create @post_comment = PostComment.create(comment_params) if @post_comment.save redirect_to "/main/#{post_comment.post.id}" end private def comment_params params.require(:post).permit(:post_comment).merge(user_id: current_user.id, post_id: params[:post_id]) end
mainコントローラー
class MainController < ApplicationController skip_before_action :authenticate_user!, only: [:index] before_action :all_posted, only: [:index, :posted] def index end def new @post = Post.new end def create @post = Post.new(post_params) if @post.save redirect_to main_index_path else render 'new' end end def show @post = Post.find(params[:id]) @comment = PostComment.new @comments = @post.post_comments.includes(:user) end def posted end private def all_posted @posts = Post.all.includes(:user).order("created_at DESC") end def post_params params.require(:post).permit(:image, :post_title, :post_text).merge(user_id: current_user.id) end end
PostCommentモデル
class PostComment < ApplicationRecord belongs_to :user belongs_to :post validates :post_comment, presence: true end
Postモデル
class Post < ApplicationRecord belongs_to :user has_one_attached :image has_many :post_comments with_options presence: true do validates :image validates :post_title validates :post_text end end
Showビューファイル
<div class="container"> <%= form_with(model: [@post_comment,@post], url:main_post_comments_path(@post), class:"post_comment", local: true) do |form| %> <%= form.text_area :text, placeholder: "コメントする", rows: "2" %> <div class="comment_btn"><%= form.submit "コメントする" %></div> <% end %> </div> <div class="top_page_link"> <%= link_to "前のページに戻る", :back %> </div> <%= render "shared/footer" %>
Rails routes
main_post_comments POST /main/:main_id/post_comments(.:format) post_comments#create
試したこと
0. Route設定のネストの位置を変更
・追加したpostedアクションのdo-endの下に変更
・ネストせずにPostコントローラーの上部に配置
・そもそもPostcommentのRoute設定をコメントアウトし、ないものとする
>>全て同じエラーが表示されたままで改善なし
- Showビューファイルの記述変更
・モデルのインスタンスを複数形に変更
・(@post)の引数を複数形に変更、@post_commentに変更
>改善なし
- post_commentsコントローラーのcreateアクションの記述式の変更
・一部複数形に変更
>改善なし
>>そもそもPost_commentコントローラーにbinding.pryをかけコメント投稿するボタンを押した際にbinding.pryに引っ掛からなかったので、ここの問題ではないのかなと。。。
記事を色々と検索し、調べても原因がわからず困ってしまっています。。
もし何かヒントとなるようなものでも、教えて頂けますと幸いです。
どうぞよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー