递归地将包含非 UTF 字符的哈希转换为 UTF

发布于 2024-12-04 17:16:09 字数 277 浏览 0 评论 0原文

我有一个流氓 gem (omniauth),它提供了包含 ASCII-BIT8 字符串的数据哈希,我想将其转换为 UTF。

我怎样才能将散列的所有字符串元素强制转换为UTF,作为某种rails初始化方法? .to_utf8

初始化程序

session[:omniauth] = omniauth.to_utf8

class Hash
  def to_utf8
    #not really sure what to do here?
  end
end

I have a rogue gem (omniauth) which provides a hash of data containing ASCII-BIT8 strings that I would like to convert into UTF.

How can I force all of the string elements of the hash into UTF, as some kind of rails initializer method? .to_utf8

initilizer

session[:omniauth] = omniauth.to_utf8

class Hash
  def to_utf8
    #not really sure what to do here?
  end
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与往事干杯 2024-12-11 17:16:09

在 Ruby 1.9 中,您通常可以使用 encode 方法翻转编码。围绕此问题的包装器可以递归地转换哈希值,这与 symbolize_keys 不同,使这一过程变得简单:

class Hash
  def to_utf8
    Hash[
      self.collect do |k, v|
        if (v.respond_to?(:to_utf8))
          [ k, v.to_utf8 ]
        elsif (v.respond_to?(:encoding))
          [ k, v.dup.encode('UTF-8') ]
        else
          [ k, v ]
        end
      end
    ]
  end
end

In Ruby 1.9 you can usually just flip the encoding using the encode method. A wrapper around this that recursively transforms the hash, not unlike symbolize_keys makes this straightforward:

class Hash
  def to_utf8
    Hash[
      self.collect do |k, v|
        if (v.respond_to?(:to_utf8))
          [ k, v.to_utf8 ]
        elsif (v.respond_to?(:encoding))
          [ k, v.dup.encode('UTF-8') ]
        else
          [ k, v ]
        end
      end
    ]
  end
end
吲‖鸣 2024-12-11 17:16:09

试试这个:

json_string = not_encoded_hash.to_json.dup.encode("UTF-8")
encoded_hash = JSON.parse(json_string).with_indifferent_access

try this:

json_string = not_encoded_hash.to_json.dup.encode("UTF-8")
encoded_hash = JSON.parse(json_string).with_indifferent_access
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文