我需要使用数组当前迭代的名称来创建字典的名称。
例如:
sites = ["google", "facebook", "twitter", "stackoverflow"]
sites.each do |site|
#{site}_success_hash = {} <-- I need the correct syntax for achieving this result.
... populate ... hash
end
所以我想要 4 个名为 的哈希值google_success_hash
,等等。
我无法弄清楚这一点,这让我发疯。