simplejson.loads()获取无效\ escape:'x'

时间:2010-11-28 08:49:16

标签: python escaping simplejson

我正在学习如何使用simplejson解码JSON文件。但我遭遇了“无效\逃脱”错误。 这是代码

import simplejson as json

def main():
    json.loads(r'{"test":"\x27"}')

if __name__ == '__main__':
    main()

这是错误消息

Traceback (most recent call last):
  File "hello_world.py", line 7, in <module>
    main()
  File "hello_world.py", line 4, in main
    json.loads(r'{"test":"\x27"}')
  File "C:\Users\zhangkai\python\simplejson\__init__.py", line 307, in loads
    return _default_decoder.decode(s)
  File "C:\Users\zhangkai\python\simplejson\decoder.py", line 335, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "C:\Users\zhangkai\python\simplejson\decoder.py", line 351, in raw_decode

    obj, end = self.scan_once(s, idx)
  File "C:\Users\zhangkai\python\simplejson\scanner.py", line 36, in _scan_once
    return parse_object((string, idx + 1), encoding, strict, _scan_once, object_
hook)
  File "C:\Users\zhangkai\python\simplejson\decoder.py", line 185, in JSONObject

    value, end = scan_once(s, end)
  File "C:\Users\zhangkai\python\simplejson\scanner.py", line 34, in _scan_once
    return parse_string(string, idx + 1, encoding, strict)
  File "C:\Users\zhangkai\python\simplejson\decoder.py", line 114, in py_scanstr
ing
    raise ValueError(errmsg(msg, s, end))
ValueError: Invalid \escape: 'x': line 1 column 10 (char 10)

我认为json解析器应该识别转义。所以我想知道什么是错的,我该怎么做。

3 个答案:

答案 0 :(得分:11)

JSON没有十六进制转义(\xNN),就像某些语言(包括JavaScript)和符号那样details here。它有一个unicode转义,\uNNNN其中NNNN是四位十六进制数字,但没有\x十六进制转义。

答案 1 :(得分:2)

这是解析器的预期行为,因为JSON无效;在字符串中,只有"\/bfn,{{1}才能跟踪斜杠},rt(必须后跟4个十六进制字符)。不允许u。请参阅http://json.org/

上的规范

答案 2 :(得分:0)

尝试python-cjson

import cjson
s = cjson.encode({'abc':123,'def':'xyz'})
print 'json: %s - %s' % (type(s), s)
s = cjson.decode(s)
print '%s - %s' % (type(s), s)