ruby
1note.rb 2class Note < ApplicationRecord 3 4 belongs_to :user 5 has_many :comments 6 has_many :replies, class_name: "Comment", foreign_key: :reply_comment, dependent: :destroy 7 8 mount_uploader :image_url, ImagesUploader 9
ruby
1comments_controller 2 def create 3 comment=Comment.new(comment_params) 4 if comment.save 5 if comment.reply_comment.present? 6 redirect_to note_path(Comment.find_by(id: comment.reply_comment).note), notice: "新規コメントを保存しました。" 7 else 8 redirect_to note_path(comment.note), notice: "新規コメントを保存しました。" 9 end 10 else 11 if comment.reply_comment.present? 12 flash.now[:alert] = "適切に全て入力してください。" 13 redirect_to note_path(Comment.find_by(id: comment.reply_comment).note) 14 else 15 flash.now[:alert] = "適切に全て入力してください。" 16 redirect_to note_path(comment.note) 17 end 18 end 19 end
ruby
1notes/show.html.erb 2 <% if @comments.present? %> 3 <% @comments.each do |comment| %> 4 <% unless comment.reply_comment == nil %> 5 <%= render partial: "common/comment",locals: { comment: @comments.find_by(id: comment.reply_comment) } %> 6 <% end %> 7 <%= render partial: "common/comment",locals: { comment: comment }%> 8 <%= form_for [@notes,@new_comments] do |f| %> 9 <div class="row"> 10 <%= f.text_field :text, placeholder:"このコメントに対する返信を入力してください。",class:"form-control col-11"%> 11 <%= f.hidden_field :reply_comment, :value => comment.id %> 12 <%= f.submit "返信", class:"btn btn-primary shadow-sm btn-lg col-1" %> 13 </div> 14 <% end %> 15 <% end %> 16 <% else %> 17 <h2 class="col-4 my-5">Commentはありません。</h2> 18 <% end %>
このようなコードでコメントに対する返信機能を実装したいと考えています。
親のない普通のコメントはうまくいくのですが、親コメントに対する返信コメントはカラムにデータとして保存されずに元のページに戻ってしまいます。
どのように対応すれば良いでしょうか?
あなたの回答
tips
プレビュー