我正在关注民意调查应用教程第 3 部分,但找不到模板
这是确切的错误
polls/index.html
Request Method: GET
Request URL: http://localhost:8000/polls/
Django Version: 1.4.3
Exception Type: TemplateDoesNotExist
Exception Value:
polls/index.html
Exception Location: c:\Python27\lib\site-packages\django\template\loader.py in find_template, line 138
Python Executable: c:\Python27\python.exe
Python Version: 2.7.2
所以在我的 settings.py 中,我把目录放在那里。“C:/Scripts/mysite/template”并创建/polls/index.html
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:/Scripts/template"
"C:/Scripts/mysite/template"
)
它由于某种原因找不到它。有任何想法吗?这是教程中的确切说明。
在文件系统的某个位置创建一个目录,Django 可以访问其内容。(Django 以您的服务器运行的任何用户身份运行。)