我是 Python 和 Django 的新手,在遵循 Django 教程时遇到了一些问题
我在 settings.py 中配置了 Django 以从路径中获取自定义模板。但是,文件夹的名称包含拉丁字符,因此 Python 输出以下错误:Non-ASCII character '\xe3' in file C:\Users\Joòo Dias...。
我试过放#coding iso8859-1
,但出现了另一个类似的错误,但现在说 UTF-8 无法转换字符。
错误发生在 TEMPLATE_DIRS 定义上
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
'C:/Users/João Dias/PythonProjects/test27/templates'
)
关于如何解决这个问题的任何想法?谢谢!