我使用活动记录 4 设置了以下模型(映射旧数据库)
class Page < ActiveRecord::Base
self.table_name = "page"
self.primary_key = "page_id"
has_many :content, foreign_key: 'content_page_id', class_name: 'PageContent'
end
class PageContent < ActiveRecord::Base
self.table_name = "page_content"
self.primary_key = "content_id"
belongs_to :pages, foreign_key: 'page_id', class_name: 'Page'
end
以下工作正常....
page = Page.first
page.content.first.content_id
=> 17
page.content.second.content_id
=> 18
但是我希望能够像这样循环所有项目
page.content.each do |item|
item.content_id
end
但它只是返回整个集合而不是单个字段
=> [#<PageContent content_id: 17, content_text: 'hello', content_order: 1>, #<PageContent content_id: 18, content_text: 'world', content_order: 2>]
看来它是一个 ActiveRecord::Associations::CollectionProxy
page.content.class
=> ActiveRecord::Associations::CollectionProxy::ActiveRecord_Associations_CollectionProxy_PageContent
有人有什么想法吗?
干杯