L_Y_H
2022-10-29 18:12
如图:
同时pycharm出现
python版本和django版本不对应的问题,python3中没有decode方法,但是django还在用,因此造成了错误。在另一个环境中,用的python3.7+django3,就没有同样的错误。
解决方法:打开debug.py,在第331行的open()中,加上 encoding="utf-8"
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
即可解决此问题
三小时带你入门Django框架 新版上架
25587 学习 · 248 问题
相似问题