ruby-on-rails – 将Ruby Hash转换为JSON(不带转义字符)

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 将Ruby Hash转换为JSON(不带转义字符)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个哈希:
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

您将看到实际上这些转义字符未添加输出字符串.

原文链接:https://www.f2er.com/ruby/265751.html

猜你在找的Ruby相关文章