ruby-on-rails – 无法在CommentsController中重定向到Nil #troy(Polymorphic association)

我想在我的评论控制器中编写我的删除方法.我的评论模型与其他模型有多态关联,但在这种情况下,我们只关注旅行.换句话说,@ trip = @commentable.

注释被删除就好了,但我在CommentsController中不断收到错误ActionController :: ActionControllerError#destroy:无法重定向到nil!当我redirect_to @commentable这将是评论属于的旅行.

我还在我的创建操作(注释控制器)中重定向到@commentable,并且在用户创建新注释时工作正常.

有小费吗?

view(trips / show.html.erb)

<% if !@commentable.comments.empty? %>
  <% @commentable.comments.each do |comment| %>
    <!-- Content -->
    <%= link_to comment,:method => :delete do %> delete <% end %>
  <% end %> 
<% end %>

适用于创建操作的注释表单

<%= form_for [@commentable,Comment.new] do |f| %>
  <%= f.text_area :content %>
  <div id="comment_submit_button"><%= f.submit "Comment" %></div>
<% end %>

trips_controller.rb

def show
  @trip = @commentable = Trip.find(params[:id])
  @comments = Comment.all
end

comments_controller.rb

def create
   @commentable = find_commentable
   @comment = @commentable.comments.build(params[:comment])
   @comment.user_id = current_user.id

   if @comment.save
     redirect_to @commentable
   end
 end

 def destroy
  # @commentable = find_commentable    this line was wrong
   @comment = Comment.find(params[:id]) 
   @commentable = @comment.commentable #this line fixed it
   if @comment.destroy
     redirect_to @commentable
   end
 end


def find_commentable
  params.each do |name,value|
    if name =~ /(.+)_id$/
      return $1.classify.constantize.find(value)
    end
  end
 nil
end

解决方法

找出解决方案.将在上面的代码中发布解决方

def destroy
  @comment = Comment.find(params[:id])
  @commentable = @comment.commentable
  if @comment.destroy
    redirect_to @commentable
  end
end

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...