#遇到的问题,post登陆网站时,返回
{"ret":0,"msg":"\u90ae\u7bb1\u4e0d\u5b58\u5728"}
#正常应该是如下显示
{"ret":0,"msg":"邮箱不存在"}
#先检查text是什么类型如果
type(text) is bytes,
#那么
text.decode('unicode_escape')
#如果type(text) is str,
#那么
text.encode('latin-1').decode('unicode_escape')
最后修改:2020 年 10 月 11 日
© 允许规范转载