ruby-on-rails – 在运行时查找ActiveRecord类的关联?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在运行时查找ActiveRecord类的关联?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在运行时找到ActiveRecord类的关联…

我们假设我有以下内容

class Person < ActiveRecord::Base
  has_many :chairs
  has_many :pens
end

class Chair < ActiveRecord::Base
  belongs_to :person
end

class Pen < ActiveRecord::Base
  belongs_to :person
end

如何在运行时发现Person“有很多”椅子和笔,反之亦然?我正在寻找一个返回字符串数组的方法(如果存在这样的方法).即

Person.has_many_assocations

会回来:

["chairs","pens"]

Pen.belongs_to_associations

会回来:

["person"]

我错过了这样存在的方法吗?

谢谢你的帮助.

解决方法

我认为 ActiveRecord::Reflection课程可能就是你想要的.从文档:
Account.reflect_on_all_associations             # returns an array of all associations
  Account.reflect_on_all_associations(:has_many)  # returns an array of all has_many associations
原文链接:https://www.f2er.com/ruby/271199.html

猜你在找的Ruby相关文章