Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用的 Google API 正在为“&”符号输出无效的 JSON。
“名称”:“Abercrombie \x26 Fitch Co.”
我已经厌倦了简单的 .replace('\x26', '&'),但这并没有解决 python-django 中的问题。
有什么想法可以解决这个问题吗?
也许你错过了{ },我可以正确解码。你UTF-8在你的python解释器中使用吗?
{ }
UTF-8
In [11]: simplejson.loads('''{"name" : "Abercrombie \x26 Fitch Co."}''') Out[11]: {'name': 'Abercrombie & Fitch Co.'}