我写了这个方法:
def create_demo_organizations
sample_organizations = [ '37 Signals', 'Fog Creek']
sample_organizations.each { |item|
Organization.first_or_create(
name: item,
time_zone: 'Central'
)
}
end
我希望它会为我创建两个名称在数组中的组织,但是当我在 UI 管理工具中打开它时,我只能看到第一行是“37 个信号”,而不是第二行。我写错了吗?
我的目标是遍历该数组的成员并将它们插入数据库。