gpt4 book ai didi

ruby - 循环遍历 ActiveRecord::Associations::CollectionProxy 每个

转载 作者:数据小太阳 更新时间:2023-10-29 06:57:07 26 4
gpt4 key购买 nike

我使用事件记录 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

有人有什么想法吗?

干杯

最佳答案

您可能想改用 map:

page.content.map do |item|
item.content_id
end

map(又名 collect)将遍历数组并在数组成员上逐个运行您要求的任何代码。它将返回一个新数组,其中包含这些方法调用的返回值。

关于ruby - 循环遍历 ActiveRecord::Associations::CollectionProxy 每个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18116091/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com