这是我的代码,我尝试创建一个带有标头作为键的散列和带有值的散列数组,但结果不会在循环后保留数据,相反结果[key]正常工作。
def programacao
result = Hash.new([])
header = nil
csv_each_for(file_to('programacao/9')).each do |row|
next if row[0].nil?
if row[0].start_with?('#')
header = row[0]
next
end
# puts "HEADER #{header} / ROW: #{row[0]}"
result[header] << ({
horario: row[0],
evento: row[1],
tema: row[2],
palestante: row[3],
instituicao: row[4],
local: row[5]
})
binding.pry
end
result
end
第一次迭代:
[1] pry(#<Programacao>)> result
=> {}
但结果[读者]
[3] pry(#<Programacao>)> result[header]
=> [{:horario=>"09:00 - 9:50",
:evento=>"Palestra",
:tema=>"Reforma da Previdência",
:palestante=>"Dr. Álvaro Mattos Cunha Neto",
:instituicao=>"Advogado - Presidente da Comissão de Direito Previdenciário",
:local=>"OAB"}]
第二次迭代:
[1] pry(#<Programacao>)> result
=> {}
标题钢正常工作
[2] pry(#<Programacao>)> result[header]
=> [{:horario=>"09:00 - 9:50",
:evento=>"Palestra",
:tema=>"Reforma da Previdência",
:palestante=>"Dr. Álvaro Mattos Cunha Neto",
:instituicao=>"Advogado - Presidente da Comissão de Direito Previdenciário",
:local=>"OAB"},
{:horario=>"9:00 -10:00", :evento=>"Solenidade de abertura do Estande", :tema=>nil, :palestante=>"Direção/Coordenações", :instituicao=>nil, :local=>"Faculdade Católica do Tocantins"}]
我的错误在哪里?
答案 0 :(得分:2)
我不完全理解你的问题,因为你没有提供Minimal, Complete, and Verifiable example。 (什么是csv_each_for
?什么是file_to
?您的输入CSV是什么?如果不需要提供所有这些信息,那么您能提供 minimal 示例吗?)
但是,我相信你问题的症结在于这一行:
result = Hash.new([])
相反,你应该使用:
result = Hash.new { |hash, key| hash[key] = [] }
这是因为,正如the ruby docs中所述,您需要每次都创建一个新默认对象。
这是common gotcha。正是因为这个错误,你才看到了奇怪的行为,result == {}
只有result[something] == [{:horario=>"09:00 - 9:50", ...}]
。