将嵌套数组转换为JSON

时间:2013-06-03 08:23:00

标签: ruby-on-rails ruby json ruby-on-rails-3

此代码:

@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"],
   .
   .
   .
}

1 个答案:

答案 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:...>,
#    }

对象可能比哈希更方便。

关于JSON

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。