美文网首页
UnicodeDecodeError: 'gbk' codec

UnicodeDecodeError: 'gbk' codec

作者: 成功在于实践 | 来源:发表于2020-10-11 17:59 被阅读0次
    image.png
     with Path(CURRENT_DIR, 'templates', 'technical_500.html').open() as fh:
    

    修改为:

    with Path(CURRENT_DIR, 'templates', 'technical_500.html').open(encoding='utf-8') as fh:
    

    https://blog.csdn.net/qq_37232731/article/details/89684409

    相关文章

      网友评论

          本文标题:UnicodeDecodeError: 'gbk' codec

          本文链接:https://www.haomeiwen.com/subject/idiepktx.html