美文网首页
Polymorphic associations

Polymorphic associations

作者: 杜小龙 | 来源:发表于2014-01-20 23:08 被阅读32次

现在做的一个项目中 project 和 life 分别要对应一个comments
首先在comment表中加入两列

commentable_id, commentable_type

然后在project和life中分别设计连接关系

project:
has_many :comments, as: :commentable
life:
has_many :comments, as: :commentable

最后在comment中加入一个方法 find_commentable

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

=~ 是正则表达式的匹配
$1 为匹配的第一个括号里的值

参考

http://railscasts.com/episodes/154-polymorphic-association?view=asciicast
http://ruby-china.org/topics/2427

相关文章

网友评论

      本文标题:Polymorphic associations

      本文链接:https://www.haomeiwen.com/subject/oyvctttx.html