Convert keys to strings def stringify_keys(hash) transform_hash(hash) {|hash, key, value| hash[key.to_s] = value } end stringify_keys(h) ...
確定! 回上一頁