django中,'gbk' codec can't decode byte 0xa6 in position 9737 illegal multibyte sequence问题

django中,‘gbk’ codec can’t decode byte 0xa6 in position 9737: illegal multibyte sequence问题

[External link image transfer failed. The source site may have an anti-leech link mechanism. It is recommended to save the image and upload it directly (img-kr4Ogw7o-1588921597285) (C:\Users\hq0749a\Desktop\Question Picture Collection\WeChat Picture_20200508110731.jpg )]
Jump to the path below
[External link image transfer failed. The source site may have an anti-hotlinking mechanism. It is recommended to save the image and upload it directly (img-URRjDMqZ-1588921597299) (C:\Users\hq0749a\AppData\Roaming\Typora\typora-user-images\ 1588920590797.png)]

About 331 lines:
with Path(CURRENT_DIR,'templates','technical_500.html').open() as fh
changed to:
as fh
changed to:
with Path(CURRENT_DIR,'templates','technical_500.html').open (encoding="utf-8") as fh

Guess you like

Origin blog.csdn.net/weixin_45609519/article/details/105997625