让我们说我有模型主题和帖子,其中主题has_many:帖子和帖子belongs_to:主题。此时我的数据库中已经有了一些东西。
如果我进入rails控制台并输入
Topic.find(1).posts
我相信我得到了一个CollectionProxy对象。
=> #<ActiveRecord::Associations::CollectionProxy [#<Post id:30, ......>]>
我可以调用.each来获取一个Enumerator对象。
=> #<Enumerator: [#<Post id: 30, ......>]:each>
我很困惑CollectionProxy如何处理.each。我意识到它在某些时候继承了,但是我一直在阅读API文档,他们并没有清楚地说明CollectionProxy继承的是什么,除非我遗漏了一些明显的东西。 / p>
答案 0 :(得分:6)
ActiveRecord::Associations::CollectionProxy
is inherited from Relation
和Relation
将each
以及许多其他方法转发给to_a
。
来自activerecord/lib/active_record/relation/delegation.rb#L45
委托:to_xml,:to_yaml,:length,:collect,:map,:each,:all?,:include?,:to_ary,:join,to :: to_a
有关delegate
如何运作的绝佳解释,请参阅Understanding Ruby and Rails: Delegate。
答案 1 :(得分:4)
你为什么不试着问它从何而来?
> ActiveRecord::Associations::CollectionProxy.instance_method(:each).owner
=> ActiveRecord::Delegation
返回定义方法的类或模块。
所以each
来自ActiveRecord::Delegation
。如果你看ActiveRecord::Delegation
,you'll see this:
delegate ..., :each, ... , to: :to_a
所以each
会进一步受到to_a.each
的攻击。</ p>