我正在做一些测试,如果我可以问一个课它有什么关联,那可能真的很好。就像这个例子:
class Car < ActiveRecord::Base
# Relationships
has_many :sellers
has_many :adverts
has_many :images
end
然后做一些像......
Car.associations #=> [:sellers, :adverts, :images]
答案 0 :(得分:3)
您想要reflect_on_all_associations
。