此代码:
@countries.map { |l| [l.country_name, l.latitude, l.longitude, l.capital] }
返回
[["country_name_1", latitude, longitude, capital],["country_name_2", latitude, longitude, capital],...]
但我需要转换为JSON;像这样的东西:
{
"country_name_1" : [latitude, longitude, "capital"],
"country_name_2" : [latitude, longitude, "capital"],
.
.
.
}
答案 0 :(得分:5)
这应该有效:
Hash[@countries.map { |l| [l.country_name, [l.latitude, l.longitude, l.capital]] }]
Rails还提供index_by
:
@countries.index_by(&:country_name)
# => {
# "country_name_1" => #<Country latitude:..., longitude:...>,
# "country_name_2" => #<Country latitude:..., longitude:...>,
# }
对象可能比哈希更方便。
Rails内置了对JSON的支持:http://guides.rubyonrails.org/layouts_and_rendering.html#rendering-json
您也可以手动拨打to_json
:
hash = Hash[@countries.map { |l| [l.country_name, [l.latitude, l.longitude, l.capital]] }]
hash.to_json
或使用JSON Builder gem。