繁体   English   中英

在rails多态关联中查找父级

[英]finding parent in rails polymorphic association

我正致力于实现多态注释(这些注释可以应用于网站上的任何用户内容,并且不仅限于Article实例。在创建注释时,我需要确定它属于哪个可commentable 。大多数写作我我已经在这个问题上发现我在下面的代码中使用了find_commentable中指定的模式,但是这种方法并没有让我觉得非常优雅 - 似乎应该有一种直接的方法来明确指定可commentable的新注释正在被创建因为,没有遍历params集,没有字符串匹配。有更好的方法吗?

换句话说,是否有更好的方法在commentablecomment关联的上下文中从comment控制器访问可commentable对象? 它仍然适用于我们尚未使用@comment对象的create方法吗?

我的模型设置如下:

class Comment < ActiveRecord::Base
  belongs_to :commentable, :polymorphic => true
end

class Article < ActiveRecord::Base
  has_many :comments, :as => :commentable, dependent: :destroy
end

class CommentsController < ApplicationController 
  def create
    @commentable = find_commentable  
    @comment = @commentable.comments.build(comment_params)

    if @comment.save
      redirect_to :back
    else  
      render :action => 'new'
    end  
  end

  def index
    @commentable = find_commentable
    @comments = @commentable.comments
  end

  private
    def comment_params
      params.require(:comment).permit(:body)
    end

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

谢谢!

我也在寻找答案,并希望分享Launch Academy关于多态关联的文章,因为我觉得它提供了最简洁的解释。
对于您的应用,还有两个选项:

1.“Ryan Bates”方法:(当您使用Rails的传统RESTful URL时)

def find_commentable
    resource, id = request.path.split('/')[1, 2]
    @commentable = resource.singularize.classify.constantize.find(id)
end

2.嵌套资源:

def find_commentable
    commentable = []
    params.each do |name, value|
      if name =~ /(.+)_id$/
        commentable.push($1.classify.constantize.find(value))
      end
    end
    return commentable[0], commentable[1] if commentable.length > 1
    return commentable[0], nil if commentable.length == 1
    nil
end

3.单一资源:(您的实施,但重复完成)

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

我会反过来做 - 然后让评论定义可评论。

@comment = Comment.create(params[:comment]) #this is the standard controller code for create
@commentable = @comment.commentable

我接受了Ryan Bates的想法,并稍微调整了一下。 我有一些更深入的范围和嵌套资源。

id, resource = request.path.split('/').reverse[1,2]
@commentable = resource.singularize.classify.constantize.friendly.find(id)

这里的想法是你从路径的末尾剥离父母。

因此,如果你的路径是/scope/resource_a/1234/resource_b/5678/comments等,无论你有多深,你总是得到顶级父级。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM