递归修改嵌套哈希值

时间:2014-11-05 17:36:02

标签: ruby-on-rails ruby recursion hash

给定以下哈希结构,我想走结构并使用" link"的键修改所有值:

{"page_id":"12345", "link_data":{"message":"test message", "link":"https://www.example.com", "caption":"https://www.example.com", "child_attachments":[{"link":"http://www.example.com", "name":"test", "description":"test", "picture":"https://fbcdn-creative-a.akamaihd.net/hads-ak-xap1/t45.1600-4/10736595_6021553533580_1924611765_n.png"}, {"link":"http://www.example.com", "name":"test", "description":"test", "picture":"https://fbcdn-creative-a.akamaihd.net/hads-ak-xaf1/t45.1600-4/10736681_6021625991180_305087686_n.png"}, {"link":"http://www.example.com", "name":"test", "description":"test 2", "picture":"https://fbcdn-creative-a.akamaihd.net/hads-ak-xfp1/t45.1600-4/10736569_6020761399780_1700219102_n.png"}]}}

我一直在玩的方法对我来说感觉有点不对,我检查所有的值,看看它们是否有匹配应该是URL的模式,然后在那时修改它: / p>

  def find_all_values_for(key)
    result = []
    result << self[key]
    self.values.each do |hash_value|
      if hash_value.to_s =~ URI::regexp # if the value looks like a URL then change it
        # update the url
     end
    end
  end

因此,转换的确切最终结果应该是与URL修改相同的哈希值。我实际想要做的是将跟踪参数添加到散列中的每个URL。

我已经玩弄了将哈希值转换为字符串并在其上执行一些字符串替换的想法,但这似乎不是最干净的做事情。

干杯

1 个答案:

答案 0 :(得分:9)

或许这样的事情?

def update_links(hash)
  hash.each do |k, v|
    if k == "link" && v.is_a?(String)
      # update link here
      v.replace "a modification"
    elsif v.is_a?(Hash)
      update_links v
    elsif v.is_a?(Array)
      v.flatten.each { |x| update_links(x) if x.is_a?(Hash) }
    end
  end
  hash
end