1

我对 ruby​​ 很陌生,我正在阻止这个简单的问题:

我有以下哈希:

theData"=>{"586"=>{"status"=>"0"},
           "585"=>{"status"=>"0"}}

我想在每个级别添加一行“current_editor”,以获得以下哈希:

theData"=>{"586"=>{"status"=>"0", "current_editor" => "3"},
           "585"=>{"status"=>"0", "current_editor" => "3"}}

我怎样才能做到这一点?提前谢谢了!

4

1 回答 1

1
theData = {"586"=>{"status"=>"0"}, "585"=>{"status"=>"0"}}
theData.each{|k, v| theData[k]["current_editor"] = 3}
#=> {"586"=>{"status"=>"0", "current_editor"=>3}, 
#=>  "585"=>{"status"=>"0", "current_editor"=>3}} 
于 2011-10-03T15:54:55.423 回答