前提・実現したいこと
現在railsで投稿アプリを作成しています。
メッセージ投稿時にエラー(userを入力してください)が出てしまいます。以前(トークルーム作成時)にも同じようなことがあって、その際はvalidate: falseをモデルに追加して回避した(理解はできていません)のですが、今回も同じようなエラーが出ています。前回のようにvalidate: falseで回避できないため違う方法がないか検索をかけたところ、allow_blank: trueで回避できそうとの記事を見つけたため記述すると出たエラーです。しかしはエラー状態で再読み込みを行うとエラー画面が消え、正常に投稿できるようになります。何か手を加えればこの初めのエラーも出なくなるのでしょうか?原因がわかりません。
初心者です。お力添えをよろしくお願いいたします。
発生している問題・エラーメッセージ
エラー文です。
エラー文が出ている状態で再読み込みをするとエラーが解除され、投稿できるようになります。
ArgumentError in CommentsController#create Unknown key: :allow_blank. Valid keys are: :class_name, :anonymous_class, :foreign_key, :validate, :autosave, :foreign_type, :dependent, :primary_key, :inverse_of, :required, :polymorphic, :touch, :counter_cache, :optional, :default
該当のソースコード
commentの記述でエラーが出ます。 class Comment < ApplicationRecord belongs_to :debate belongs_to :user, allow_blank: true belongs_to :coach, allow_blank: true
commentsコントローラーです。 class CommentsController < ApplicationController def index @commented = Comment.all @comment = Comment.new @debate = Debate.find(params[:debate_id]) @comments = @debate.comments.includes(:coach) @comments = @debate.comments.includes(:user) end def create @debate = Debate.find(params[:debate_id]) if coach_signed_in? @comment = @debate.comments.new(coach_comment_params) else user_signed_id? @comment = @debate.comments.new(user_comment_params) end if (@comment || @comments).save redirect_to debate_comments_path(@debate) else @comments = @debate.comments.includes(:coach) @comments = @debate.comments.includes(:user) render :index end end private def coach_comment_params if coach_signed_in? params.require(:comment).permit(:content).merge(coach_id: current_coach.id) end end def user_comment_params if user_signed_in? params.require(:comment).permit(:content).merge(user_id: current_user.id) end end end
補足情報(FW/ツールのバージョンなど)
文章が拙く、申し訳ございません。
もし何か不足している、知りたいコードがありましたら、コメントをお願いします。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー