为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

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
即可解决此问题

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

进入http://127.0.0.1:8000/blog/hello_world报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信