如何向多维哈希添加一行?
我对 ruby 很陌生,我在这个简单的问题上遇到了阻碍:
我有以下哈希:
theData"=>{"586"=>{"status"=>"0"},
"585"=>{"status"=>"0"}}
我想在每个级别添加一行“current_editor”,以获得以下哈希:
theData"=>{"586"=>{"status"=>"0", "current_editor" => "3"},
"585"=>{"status"=>"0", "current_editor" => "3"}}
我该怎么做?非常感谢!
I'm quite new to ruby and I'm blocking on this simple issue:
I have the following hash:
theData"=>{"586"=>{"status"=>"0"},
"585"=>{"status"=>"0"}}
I would like to add a line "current_editor" at each level, to get the following hash:
theData"=>{"586"=>{"status"=>"0", "current_editor" => "3"},
"585"=>{"status"=>"0", "current_editor" => "3"}}
How can I do this? Many thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)