発生している問題・エラーメッセージ
助けてください。
<1>コメントを適当に入れて
送信ボタンを押す
先程ありがたいことに知人から少し訂正のアドバイスをいただきました。
ルートは送り先住所がroutes.rbを見直すことと
受け取り側住所がviewなのでviewを見直して下さいとアドバイスがあり
ネストした場合にはフォームに渡すモデルオブジェクトは <%= form_for([@product, @characteristic]) do |f| %>
のように配列で渡すことでできますとメールにていただきました。
<%= form_with model: [@comment, @comment]
の修正までできました。ですが
エラーの内容はまだ変わっていません
前提・実現したいこと
<3>送信ボタンを押して
<1>コメントを適当に入れて
送信ボタンを押すと送信ボタン下にメッセージが表示されること
前提・実現したいこと
エラーメッセージ
該当のソースコード
comments_controller.rb
rails
1class CommentsController < ApplicationController 2 def create 3 if @comment = Comment.new(comment_params) 4 if @comment.save 5 redirect_to prototype_path(@prototype.id) 6 else 7 @prototype = @comment.text 8 @comments = @prptotype.comments 9 render "prototypes/show" # views/tweets/show.html.erbのファイルを参照しています。 10 end 11 end 12 13 14private 15 16 def comment_params 17 params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: prototype.id) 18 end 19end 20 21
show.html.erb
rails
1 <div class="prototype__comments"> 2 <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> 3 <% if user_signed_in? && current_user.id %> 4 <%= form_with model: **__[@comment, @comment]__**,local: true do |f|%> 5 <div class="field"> 6 <%= f.label :text_area, "コメント"%><br/> 7 <%= f.text_field :text, id:"comment_text" %> 8 </div> 9 <div class="actions"> 10 <%= f.submit "送信する", class: :form__btn %> 11 </div> 12 <% end %> 13 <% end %> 14 <%# // ログインしているユーザーには上記を表示する %> 15 <ul class="comments_lists"> 16 <%# 投稿に紐づくコメントを一覧する処理を記述する %> 17 <li class="comments_list"> 18 <%= " コメントのテキスト "%> 19 <%= link_to current_user.name, root_path, class: :comment_user %> 20 </li> 21 <%# // 投稿に紐づくコメントを一覧する処理を記述する %> 22 </ul> 23 </div>
routes.rb
rails
1Rails.application.routes.draw do 2 devise_for :users 3 root to: "prototypes#index" 4 resources :prototypes do 5 resources :comments, only: [:create] 6 end 7end
comment.rb
rails
1class Comment < ApplicationRecord 2 belongs_to :prototype 3 belongs_to :user 4 5 6 validates :text, presence: true 7end 8
prototypes_controller.rb
rails
1 @prototype = Prototype.find(params[:id]) 2 @comment = Comment.new #from withを使用してコメントをクリエイト「comments#create」を実行したい 3 @comments = @prototype.comments.includes(:user)
上記で修正できました
試したこと
不明です
現象考えられるのは上記2つ
ここに問題に対して試したことを記載してください。
パスの設定
idの取得の設定
など
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー