python 简单 json 问题,带有 unicode 字符串 url“link”:“http:\/\/www.mydomain.com”?
我有一本字典,当我将它传递给 simplejson.dumps(dict)
时,json 输出已在字符串 url 上进行了某种编码?
"link": "http:\/\/www.mydomain.com"
我怎样才能阻止这个?
我使用应用程序引擎 simplejson。
i have a dictionary when i pass it over simplejson.dumps(dict)
the json output has put some sort of encoding on a string url?
"link": "http:\/\/www.mydomain.com"
How can i stop this?
Im using app engine simplejson.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为这有什么问题。正斜杠的这种编码完全有效。如果对方无法解码,则说明他们的 JSON 库已损坏。
I don't see a problem with this. This encoding for the forward slash is perfectly valid. If the other side can't decode this then it's their JSON library that is broken.