ruby-on-rails – 将Ruby Hash转换为JSON(不带转义字符)
发布时间:2020-12-16 22:38:31 所属栏目:百科 来源:网络整理
导读:我有一个哈希: my_hash = {"bob.johnson@example.com"={"first"="Bob","last"="Johnson"},"lisa.dell@example.com"={"first"="Lisa","last"="Dell"}} 当我尝试用my_hash.to_json序列化它是我得到的: "{"bob.johnson@example.com":{"first":"Bob","l
我有一个哈希:
my_hash = {"bob.johnson@example.com"=>{"first"=>"Bob","last"=>"Johnson"},"lisa.dell@example.com"=>{"first"=>"Lisa","last"=>"Dell"}} 当我尝试用my_hash.to_json序列化它是我得到的: "{"bob.johnson@example.com":{"first":"Bob","last":"Johnson"},"lisa.dell@example.com":{"first":"Lisa","last":"Dell"}}" 如何将哈希转换为JSON格式而不得到转义字符? 解决方法
Ruby String(你的my_hash.to_json输出)中的这些转义字符转义“如果你这样做
puts my_hash.to_json 您将看到实际上这些转义字符未添加到输出字符串. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |