4
是否有紅寶石2一個簡單的方法/ Rails 3中改造這個:經典哈希點符號哈希
{a: {b: {"1" => 1, "2" => 2}, d: "Something"}, b: {c: 1}}
到這一點:
{"a.b.1" => 1, "a.b.2" => 2, "a.d" => "Something", "b.c" => 1}
我不是在談論這種精確散列,但將任何散列轉換爲點符號散列。
是否有紅寶石2一個簡單的方法/ Rails 3中改造這個:經典哈希點符號哈希
{a: {b: {"1" => 1, "2" => 2}, d: "Something"}, b: {c: 1}}
到這一點:
{"a.b.1" => 1, "a.b.2" => 2, "a.d" => "Something", "b.c" => 1}
我不是在談論這種精確散列,但將任何散列轉換爲點符號散列。
這裏是最乾淨的解決方案,我能想出現在:
def dot_it(object, prefix = nil)
if object.is_a? Hash
object.map do |key, value|
if prefix
dot_it value, "#{prefix}.#{key}"
else
dot_it value, "#{key}"
end
end.reduce(&:merge)
else
{prefix => object}
end
end
測試:
input = {a: {b: {"1" => 1, "2" => 2}, d: "Something"}, b: {c: 1}}
p dot_it input
輸出:的
{"a.b.1"=>1, "a.b.2"=>2, "a.d"=>"Something", "b.c"=>1}
正是我需要的。謝謝! – Oktav
可能重複[轉換嵌套散列成平哈希](http://stackoverflow.com/questions/9647997/converting-a-nested-hash-into-a-flat-hash)。不完全一樣,但可以應用於微不足道的變化。 – sawa
是的,可以加入陣列。謝謝! – Oktav