前提・実現したいこと
ユーザー管理システムがあり、写真とテキストを投稿してその投稿にコメントができるアプリケーションを作成しています。今回、写真とテキストまでは投稿できるようになったのですが、コメントを送信してもエラーは発生しないのですが、データベースに保存されず困っている状態です。
発生している問題・エラーメッセージ
コメントを送信してもエラーが出ず、データベースには保存されていない
該当のソースコード
controllers/comments_controller
ruby
1class CommentsController < ApplicationController 2 3 def create 4 @comment = Comment.new(comment_params) 5 if @comment.save 6 redirect_to prototype_comments_path 7 else 8 @prototype = Prototype.find(params[:id]) 9 render "prototypes/show" 10 end 11 end 12 13 private 14 def comment_params 15 params.permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) 16 end 17 18end
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 9 post '/prototypes/:id', to: 'comments#create' 10 11 12end
views/prototypes/show.html.erb
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>
controllers/prototypes_controller
class PrototypesController < ApplicationController def index @prototypes = Prototype.all end def new @prototype = Prototype.new end def create if Prototype.create(prototype_params) redirect_to root_path else render :new end end def show @prototype = Prototype.find(params[:id]) @comment = Comment.new end def edit @prototype = Prototype.find(params[:id]) end def update prototype = Prototype.find(params[:id]) if prototype.update(prototype_params) redirect_to prototype_path else render edit_prototype_path end end def destroy prototype = Prototype.destroy(params[:id]) redirect_to root_path end private def prototype_params params.require(:prototype).permit(:title,:catch_copy,:concept,:image).merge(user_id: current_user.id) end end
試したこと
comments_controllerの if @comment.saveを if @comment.save!としたら、(saveできているかチェックした)ActiveRecord::RecordInvalid in CommentsController#createというエラーが出た。
補足情報(FW/ツールのバージョンなど)
ruby 2.6.5
Rails 6.0.3.4
回答1件
あなたの回答
tips
プレビュー