json 注意点

1、特殊符号 \n 的转换逻辑

import json
x = {'test': "测试\n"}  # python 中的字典结构
x_json = json.dumps(x, ensure_ascii=False)
x_json  # '{"test": "测试\\n"}'   这里看上去稍微有一点特殊,本质就是转义 json 字符串。
print(x_json) # {"test": "测试\n"}
# 
posted @ 2023-06-03 11:33  Gelthin  阅读(3)  评论(0编辑  收藏  举报