ruby-on-rails – Rails多个belongs_to用于同一个类
发布时间:2020-12-16 22:58:23 所属栏目:百科 来源:网络整理
导读:假设我有一个A型模型和一个B型模型,它的字段为a_id a2_id.我希望有类似的东西: class B belongs_to :a belongs_to :a (using a2)end 有谁知道我会怎么做?我试图使用B类链接我的数据库中的类似对象. 解决方法 你可以这样做 class B belongs_to :a belongs_t
假设我有一个A型模型和一个B型模型,它的字段为a_id a2_id.我希望有类似的东西:
class B belongs_to :a belongs_to :a (using a2) end 有谁知道我会怎么做?我试图使用B类链接我的数据库中的类似对象. 解决方法
你可以这样做
class B belongs_to :a belongs_to :a2,foreign_key: 'a2_id',class_name: 'A' end (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |