使用json转:
json数据保密,再此不展示。
# 判断类型
print(type(str_json))
json_dump = json.loads(str_json)
报错如下:
json.decoder.JSONDecodeError: Invalid control character at: line 1 column 2324 (char 2323)
解决:
# use simplejson.loads() make str to dictionary type
json_dump = simplejson.loads(str_json, strict=False)
完美解决!
忽略严格语法