摘要:
错误信息:UnicodeEncodeError: 'latin-1' codec can't encode characters in position 535-538: Body ('流程表单') is not valid Latin-1. Use body.encode('utf-8') if 阅读全文
摘要:
1、错误提示:TypeError: Unicode-objects must be encoded before hashing 进行MD5哈希运算前,需对数据进行编码,如 str='abc' hashlib.md5(str).digest() 改为 str='abc' hashlib.md5(st 阅读全文