配列データは次のとおりです。
data = [
# == DB Seeds ==
["name", "Peter", "Pan", "Ulla"],
["t_u_a", "4405", "6710", "8010"],
["t_u_b", "5590", "5590", "9080"]
]
列名、値、値、値です。
Railsには配列用の優れたcreateメソッドがありますか?
私が書く必要がある代わりに:
Product.create([{ name: 'Peter', tu_a_a: '4405', tu_a_b: '5590' },
{ name: 'Pan', tu_a_a: '6710', tu_a_b: '5590' },
{ name: 'Ulla', tu_a_a: '8010', tu_a_b: '9080' }])
アップデート:
[{"name"=>"name", "Peter"=>"Peter", "Pan"=>"Pan", "Ulla"=>"Ulla", nil=>nil},
{"name"=>"t_u_a", "Peter"=>"4405", "Pan"=>"6710", "Ulla"=>"8010", nil=>nil},
{"name"=>"t_u_b", "Peter"=>"5590", "Pan"=>"5590", "Ulla"=>"9080", nil=>nil}]