错误 {“errcode”:40033,”errmsg”:”invalid charset. please check your request, if include \uxxxx will create fail!”}
方法
利用 Python 的 json 内置模块,在进行 dumps 操作时,使用 ensure_ascii=False
参数是中文不会被转码1
data = json.dumps(data,ensure_ascii=False).encode('utf-8')
完整实例
1 | import json |
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章