繁体   English   中英

从活动记录关系中获取模型类

[英]Getting the model class from active record relation

我有一个 Rails 模型:

class Foo < ActiveRecord::Base
  ...
end

给定一个活动记录关系:

limited_foo = Foo.where(...)

我怎样才能获得原始模型类?

limited_foo ... # => Foo

ActiveRecord::Relation有一个attribute_reader klass

limited_foo.klass
#=> Foo

来源在这里 别名model也有效。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM