Ruby 中字符串的哈希值:Marshal.load? (从 Rails Production.log 重新创建 params 哈希)

发布于 2024-12-09 11:02:09 字数 550 浏览 1 评论 0原文

我想解析 Rails production.log 文件并重新创建 params 哈希。我坚持使用 Marshal.load 方法,该方法实际上期望对数据进行编组。嗯,数据格式良好,但它是一个字符串,而不是元帅预期的格式。

这是我从日志文件的请求中正则表达式的字符串:

{
 "location"=>{"city"=>"München \"foo \" bar", "id"=>"462", "youtube_tags"=>""},
 "authenticity_token"=>"UHi0GCNDBPN/Ms+0bqEOl4HGvUjDRw8tNvtqVl3v0dY=",
 "utf8"=>"\342\234\223", "textinput"=>""
}

我尝试解决这个问题,

o=JSON.parse.gsub("=>",":"))

在这种情况下我遇到了元音变音问题。

是否无法使用 Ruby 1.8.7 解析或加载从字符串到实际 Ruby 哈希结构的哈希表示?

I want to parse Rails production.log files and recreate the params Hash. I am stuck with the Marshal.load method, which actually expects the data to be marshalled. Well, the data is well-formed but it is a String and not in a Marshal expected format.

here is the String that i regexed out of the request from the logfile:

{
 "location"=>{"city"=>"München \"foo \" bar", "id"=>"462", "youtube_tags"=>""},
 "authenticity_token"=>"UHi0GCNDBPN/Ms+0bqEOl4HGvUjDRw8tNvtqVl3v0dY=",
 "utf8"=>"\342\234\223", "textinput"=>""
}

I tried my way around this issue with

o=JSON.parse.gsub("=>",":"))

in which case i get problems with umlauts.

Is there no way to parse or load a Hash representation from a String to actual Ruby Hash structures with Ruby 1.8.7?

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

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

发布评论

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

评论(1

请叫√我孤独 2024-12-16 11:02:09

这可能不是最好的方法,但是......

h = eval '{
            "location"=>{"city"=>"München", "id"=>"462", "youtube_tags"=>""},
            "authenticity_token"=>"UHi0GCNDBPN/Ms+0bqEOl4HGvUjDRw8tNvtqVl3v0dY=",
            "utf8"=>"\342\234\223", "textinput"=>""
          }'

This probably isn't the best way to do it, but ...

h = eval '{
            "location"=>{"city"=>"München", "id"=>"462", "youtube_tags"=>""},
            "authenticity_token"=>"UHi0GCNDBPN/Ms+0bqEOl4HGvUjDRw8tNvtqVl3v0dY=",
            "utf8"=>"\342\234\223", "textinput"=>""
          }'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文