ruby-on-rails – 导轨多到很多自联接

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 导轨多到很多自联接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有一点可以指出我正确的方向:

我试图建立一个轨道的模型,建立以下内容

ClassA的
-ID

ClassA与许多“ClassA”有关系(所以它是对自己的引用)

我正在寻找迁移和模式.

我不知道正确的连接表是什么(我认为它的一个简单的2列表ClassA_id,ClassARel_ID – >都指向ClassA)以及如何构建模型

谢谢!

解决方法

我会用这样的东西
class Person < ActiveRecord::Base
   has_many :friendships,:foreign_key => "person_id",:class_name => "Friendship"

   has_many :friends,:through => :friendships
end

class Friendship < ActiveRecord::Base
   belongs_to :person,:class_name => "Person"
   belongs_to :friend,:foreign_key => "friend_id",:class_name => "Person"  
end

桌子会像

people: id; name; whatever-you-need    
friendships: id; person_id; friend_id
原文链接:https://www.f2er.com/ruby/272896.html

猜你在找的Ruby相关文章