python3 web.py 模板中文乱码

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/huang_sheng0527/article/details/84298936

D:\Program Files\Python\Lib\site-packages\web\template.py 1016行和1078行

return Template(open(path).read(), filename=path, **self._keywords)

改为

return Template(open(path,encoding='utf-8').read(), filename=path, **self._keywords)

猜你喜欢

转载自blog.csdn.net/huang_sheng0527/article/details/84298936
今日推荐