标签:技术分享 http 技术 源码 nbsp col mode 分享图片 alt
requests库中,在处理json格式的请求时调用的json.dumps方法参数ensure_ascii默认为True.表示序列化时对中文默认使用的ascii编码。如果想要显示中文,则将此参数的值改为False即可。
源码修改:
在requests源码的models.py文件中,找到prepare_body函数。找到如下图中的代码,在comlexjson.dumps(json)里加个参数ensure_ascii=False.
标签:技术分享 http 技术 源码 nbsp col mode 分享图片 alt
原文地址:https://www.cnblogs.com/benben-wu/p/10120688.html