在使用response.post发送带中文的json数据时,出现如题所示错误,是因为编码问题
data="讲个笑话"
# 解决方法: 先编码成bytes(utf-8)格式再解码为latin1
data=data.encode("utf-8").decode("latin1")