1前提・実現したいこと
投稿された写真に詳細ページにて
コメント機能を実装しようとしている
まず「コメント投稿の保存」を確認したく
詳細ページ(show.html.erb)にて
コメント投稿のフォームに投稿したが
詳細ページが更新されるだけで
データベースには保存されていない
2発生している問題・エラーメッセージ
テーブルにコメント内容が保存されていない エラーコードも表示されていない
3該当のソースコード
show.html.erb
<main class="main"> <div class="inner"> <div class="prototype__wrapper"> <p class="prototype__hedding"> <%= "プロトタイプのタイトル"%> </p> <%= link_to "by#{@prototype.user.name}", root_path, class: :prototype__user %> <% if user_signed_in? && current_user.id == @prototype.user_id %> <div class="prototype__manage"> <%= link_to "編集する", edit_prototype_path(@prototype.id),method: :get, class: :prototype__btn %> <%= link_to "削除する", prototype_path(@prototype.id), method: :delete, class: :prototype__btn %> </div> <% end %> <div class="prototype__image"> <%= image_tag @prototype.image%> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%=@prototype.catch_copy %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= @prototype.concept%> </p> </div> </div> <div class="prototype__comments"> <% if user_signed_in? %> <%= form_with(model:[@comment,@prototype],local:true) do |f|%>←**ここがコメントのフォームの部分** <div class="field"> <%= f.label :text, "コメント" %><br /> <%= f.text_field :text %> </div> <div class="actions"> <%= f.submit "送信する", class: :form__btn %> </div> <% end %> <% end %> <ul class="comments_lists"> <%# 投稿に紐づくコメントを一覧する処理を記述する %> <li class="comments_list"> <%# <%= " コメントのテキスト "%> <%# <%= link_to "( ユーザー名 )", root_path, class: :comment_user %> </li> <%# // 投稿に紐づくコメントを一覧する処理を記述する %> </ul> </div> </div> </div> </main>
prototypes_controller.rb
class PrototypesController < ApplicationController def index @prototypes = Prototype.all end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path(@prototype) else @prototype = @prototype.includes(:user) render :new end end private def prototype_params params.require(:prototype).permit(:title, :catch_copy, :concept,:image).merge(user_id: current_user.id) end def show @prototype = Prototype.find(params[:id]) end end
comments_controller.rb
class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) if @comment.save redirect_to prototype_path(@comment.prototype) else @prototype = @comment.prototype @comments = @prototype.comments render "prototypes/show" end end private def comment_params params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) end end ``
routes.rb
Rails.application.routes.draw do devise_for :users root to: 'prototypes#index' resources :prototypes do resources :comments, only: :create end end
4自分で調べたことや試したこと
アソシエーションを確認
userモデル
has_many :prototypes
has_many :comments
prototypeモデル
belongs_to :user
has_many :comments,dependent: :destroy
commentモデル
belongs_to :prototype
belongs_to :user
の記述は確認できた
また一度createアクションの部分で
binding.pryを使ったが、
処理は止まらなかった
def create binding.pry @comment = Comment.new(comment_params) if @comment.save redirect_to prototype_path(@comment.prototype) else @prototype = @comment.prototype @comments = @prototype.comments render "prototypes/show" end end
5使っているツールのバージョンなど補足情報
回答1件
あなたの回答
tips
プレビュー