Python – 处理 requets 请求接口时, 传输中文数据乱码问题


 

# 使用  ensure_ascii=False 

data = {
    'name': '测试名称'
}

url = "https://api.weixin.qq.com/xxx/"

data = json.dumps(data, ensure_ascii=False)

headers = {'content-type': 'application/json;charset=utf-8'}
response = requests.post(url, data=data.encode('utf-8'), headers=headers)
res = json.loads(response.text)

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/283144.html

(0)
上一篇 2022年8月30日
下一篇 2022年8月30日

相关推荐

发表回复

登录后才能评论