Reddit
と同様のRubyでアプリを作っていますが、を使ってComment
モデルで再帰を使うことにしました。Rubyでレール上で再帰的な削除を実装する方法は?
再帰削除条<から<コメント - コメントなど
問題については、私は依存し:delete_all
使ってコメント条、削除するときhas_many
関連に(または:destroy
を、すでにことを試してみました)ということで、それをコメントの最初のレベルのみが削除されます。
同じようにComments
には、最初のレベルの返信だけが削除されます。孤児のコメントがそこにあることは本当にありません。
問題は、このコンテキストで再帰的な削除を実装するにはどうすればいいですか?
モデル/ article.rb:
class Article < ActiveRecord::Base
belongs_to :user
has_and_belongs_to_many :tags
has_many :comments, as: :commentable , :dependent => :delete_all
end
モデル/ comment.rb:
class Comment < ActiveRecord::Base
belongs_to :user
belongs_to :commentable, polymorphic: true
has_many :comments, as: :commentable , :dependent => :delete_all
end
articles_controller.rb:
def destroy
@article = Article.find(params[:id])
@comments = @article.comments.destroy
@article.destroy
redirect_to articles_path
end
comments_controller.rb:
class CommentsController < ApplicationController
before_action :find_commentable
.
.
.
def create
@comment = @commentable.comments.new(comment_params)
if @comment.save
redirect_to :back, notice: 'Your comment was successfully posted!'
else
redirect_to :back, notice: "Your comment wasn't posted!"
end
end
private
def comment_params
params.require(:comment).permit(:body, :user_id)
end
def find_commentable
@commentable = Comment.find_by_id(params[:comment_id]) if params[:comment_id]
@commentable = Article.find_by_id(params[:article_id]) if params[:article_id]
end
end
ビュー/記事/ show.html.erb
.
.
.
<ul>
<%= render(partial: 'comments/comment', collection: @article.comments) %>
</ul>
ビュー/コメント/ _comment.html.erb
<li>
<%= comment.body %> -
<small>Submitted <%= time_ago_in_words(comment.created_at) %> ago by <%= User.find(comment.user_id).name %></small>
<%= form_for [comment, Comment.new] do |f| %>
<%= f.hidden_field(:user_id , :value => current_user.id) %>
<%= f.text_area :body, placeholder: "Add a Reply", required: true %><br/>
<%= f.submit "Reply" %>
<% end %>
<ul>
<%= render partial: 'comments/comment', collection: comment.comments %>
</ul>
</li>
記事やコメントを削除するコードを共有できますか? – Anand