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.
我正在使用simplejson解码以下 json 字符串。
simplejson
这是一个用 Python 编写的演示:
from simplejson import loads loads("""["\s"]""")
解码器将抛出:
JSONDecodeError: Invalid \escape
如何应对?预期的输出是:
["\\s"]
"\s" 不是有效的 JSON 转义字符串。
根据json.org,只有以下转义是有效的