标签: ruby-on-rails
我有一个Rails模型:
class Foo < ActiveRecord::Base ... end
鉴于积极的记录关系:
limited_foo = Foo.where(...)
我怎样才能获得原始模型类?
limited_foo ... # => Foo
答案 0 :(得分:21)
ActiveRecord::Relation有一个 attribute_reader klass:
ActiveRecord::Relation
klass
limited_foo.klass #=> Foo
来源是here。别名model也可以。
model