问题 I have an application that is sending a JSON object (formatted with Prototype) to an ASP server. On the server, the Python 2.6 "json" module tries to loads() the JSON, but it's choking on some combination of backslashes. Observe: >>> s '{"FileExists": true, "Version": "4.3.2.1", "Path": "\\\\host\\dir\\file.exe"}' >>> tmp = json.loads(s) Traceback (most recent call last): File "<interactive input>", line 1, in <module> {... blah blah blah...} File "C:\Python26\lib\json\decoder.py", line 155,