Ruby 中字符串的哈希值:Marshal.load? (从 Rails Production.log 重新创建 params 哈希)
我想解析 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不是最好的方法,但是......
This probably isn't the best way to do it, but ...