python 在把中文字符转化成 json 时,会把中文转成 unicode
字符,需要怎么处理才可以不转换成 unicode
字符呢?
解决方法:需要指定参数 ensure_ascii
为 False
json.dumps(tmp, ensure_ascii=False)
猜你喜欢:
暂无回复。
python 在把中文字符转化成 json 时,会把中文转成 unicode
字符,需要怎么处理才可以不转换成 unicode
字符呢?
解决方法:需要指定参数 ensure_ascii
为 False
json.dumps(tmp, ensure_ascii=False)
猜你喜欢: