python json.dumps后utf-8编码变成了unicode编码
Posted xiejunna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python json.dumps后utf-8编码变成了unicode编码相关的知识,希望对你有一定的参考价值。
解决方案:dumps的参数ensure_ascii设为false,即可显示utf-8编码
print(json.dumps(res_str, ensure_ascii=False))
以上是关于python json.dumps后utf-8编码变成了unicode编码的主要内容,如果未能解决你的问题,请参考以下文章
Python学习---JSON补充内容[中文编码 + dumps解析]
[转]python json.dumps 中的ensure_ascii 参数引起的中文编码
python json.dumps 中的ensure_ascii 参数引起的中文编码问题