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"} #