摘要: 1、特殊符号 \n 的转换逻辑 ```python import json x = {'test': "测试\n"} # python 中的字典结构 x_json = json.dumps(x, ensure_ascii=False) x_json # '{"test": "测试\\n"}' 这里看 阅读全文
posted @ 2023-06-03 11:33 Gelthin 阅读(3) 评论(0) 推荐(0) 编辑