当我启动我的应用程序时,我收到此错误 UnicodeDecodeError: 'utf8' codec can't decode byte 0xe9 in position 2566: invalid continuation byte。我在我的 HTML 文件中使用 UTF8
<meta charset="utf-8" />
在我的 Python 文件中
# -*- coding: utf-8 -*-
self.response.headers['Content-Type'] = 'text/html; charset=UTF-8'
我在网上看到了一些使用 encode() 函数的解决方案,但我不想在 Python 文件中插入文本,而是在 HTML 文件中插入文本。