TemplateDoesNotExist 在 /polls/
Posted
技术标签:
【中文标题】TemplateDoesNotExist 在 /polls/【英文标题】:TemplateDoesNotExist at /polls/ 【发布时间】:2014-07-04 05:28:42 【问题描述】:我一直在尝试django教程Django Tutorial Page 3,遇到了这个错误
"TemplateDoesNotExist at /polls/" .
我认为问题在于我的代码指向模板文件 index.html。这是index.html
的文件结构:mysite/polls/templates/polls
。
我在这里复制我的settings.py
和views.py
。
settings.py
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
观看次数。 py
from django.shortcuts import render
from django.http import HttpResponse
from django.template import RequestContext, loader
from polls.models import Poll
# Create your views here.
#def index(request):
#return HttpResponse("Hello, world. You are at the poll index.")
def index(request):
latest_poll_list = Poll.objects.order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
context = RequestContext(request,
'latest_poll_list': latest_poll_list,
)
return HttpResponse(template.render(context))
def detail(request,poll_id):
return HttpResponse("You're looking at the results of the poll %s." % poll_id)
def results(request, poll_id):
return HttpResponse("You're looking at the results of poll %s." % poll_id)
def vote(request,poll_id):
return HttpResponse("You're voting on poll %s." % poll_id)
有人可以调查它并帮助我解决这个错误。任何帮助,将不胜感激。 这是回溯`环境:
Request Method: GET
Request URL: http://localhost:8000/polls/
Django Version: 1.6.4
Python Version: 3.4.0
Installed Applications:
('django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'polls')
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware')
Template Loader Error:
Django tried loading these templates, in this order:
Using loader django.template.loaders.filesystem.Loader:
C:\Python34\mysite\templates\polls\index.html (File does not exist)
Using loader django.template.loaders.app_directories.Loader:
C:\Python34\lib\site-packages\django\contrib\admin\templates\polls\index.html (File does not exist)
C:\Python34\lib\site-packages\django\contrib\auth\templates\polls\index.html (File does not exist)
C:\Python34\mysite\polls\templates\polls\index.html (File does not exist)
Traceback:
File "C:\Python34\lib\site-packages\django\core\handlers\base.py" in get_response
114. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Python34\mysite\polls\views.py" in index
14. template = loader.get_template('polls/index.html')
File "C:\Python34\lib\site-packages\django\template\loader.py" in get_template
138. template, origin = find_template(template_name)
File "C:\Python34\lib\site-packages\django\template\loader.py" in find_template
131. raise TemplateDoesNotExist(name)
Exception Type: TemplateDoesNotExist at /polls/
Exception Value: polls/index.html`
如果我错过了任何可以提供更清晰图片的内容,请告诉我。提前致谢。
Settings.py """
Django settings for mysite project.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.6/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'ma_x5+pnvp$o7#5g#lb)0g$sa5ln%k(z#wcahwib4dngbbe9^='
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'polls',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'mysite.urls'
WSGI_APPLICATION = 'mysite.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases
DATABASES =
'default':
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'C://Python34/mysite/db.sqlite3'),
# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
#TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
# Static files (CSS, javascript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
【问题讨论】:
【参考方案1】:尝试将模板文件夹放在项目根文件夹中:
mysite/templates/polls/index.html
说明
你的模板目录是
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
它只包含一个目录:/path/to/your/project/templates
而您的 index.html 位于/path/to/your/project/polls/templates
更新
正如你所说,它不适用于存储在 mysite/templates/polls/index.html
中的模板,让我们试试这种方式:
去我的网站并运行
python manage.py shell
以mysite
作为上下文运行交互式解释器。然后运行:
from settings import TEMPLATE_DIRS
print TEMPLATE_DIRS
它会输出类似
的东西('/var/www/mithril/templates/', '/home/dmitry/proj/mithril/templates/')
Django 使用此目录来查找您的模板。
因此,您应该将目录polls/
放在来自TEMPLATE_DIRS
的文件夹中。
【讨论】:
我试过了,但仍然得到同样的错误。这是我的回溯文件 114。 response = Wrapped_callback(request, *callback_args, **callback_kwargs) 索引 14 中的文件“C:\Python34\mysite\polls\views.py”。 template = loader.get_template('polls/index. html') 138. template, origin = find_template(template_name) File "C:\Python34\lib\site-packages\django\template\loader.py" in find_template 异常类型:TemplateDoesNotExist at /polls/ 异常值:polls/index .html 请重复:您的模板存储在哪里? 它存储在 mysite/polls/templates/polls/index.html 中。 Awww man...移到mysite/templates/polls/index.html
下次请正确阅读答案
我以前试过..!!它给了我同样的错误..!【参考方案2】:
你遵循这个结构,
mysite/
mysite/
templates/
polls/
index.html
您的 TEMPLATE_DIRS 路径有问题。它应该指向模板目录的根目录。
import os
PROJECT_PATH = os.path.realpath(os.path.dirname(__file__))
...
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
在您的错误日志 django 中搜索这些路径,
C:\Python34\mysite\templates\polls\index.html
C:\Python34\mysite\polls\templates\polls\index.html
【讨论】:
这不是推荐的做事方式已经有一段时间了。【参考方案3】:哇哇哇。我们不要提倡应用程序的不可重用性。
对于不适合其他任何地方的模板(通常是您的基本模板,可能是一些部分模板,如表单包含等),可以将它们放在您的根模板目录中(即/path/to/project/templates/base.html
)。您可以在视图中将它们引用为base.html
。
对于其他模板,我建议您将它们放在包含呈现给这些模板的视图的应用程序目录中。例如,您的民意调查索引将位于某个位置,例如 /path/to/project/polls/templates/polls/index.html
。
额外的polls
目录在那里可能看起来多余,但原因是django 模板加载器将(逻辑上)将所有模板转储到一个目录中。所以我们使用第二个polls
目录来区分可能存在的多个index.html
模板。所以在你看来,你会像往常一样使用polls/index.html
。
这是一件好事,因为它使您的应用更易于重复使用。写一个民意调查应用程序?你都写了。如果您这样做,并且还将您的应用程序特定的静态文件(js、css、图像等)保存在应用程序的静态目录中,并为每个应用程序设置一个 urls.py
,那么通常您需要做的就是移动您的应用程序从一个项目到另一个项目是复制目录,添加到新项目的INSTALLED_APPS
,并包含来自您的基础urls.py
的url。当然,您可以为新项目以任何您需要的方式修改应用程序。
这还意味着,如果您使用的是带有侧边栏导航的编辑器(现在大多数情况下),您不必一直向下滚动到模板来查找该应用程序的模板。当您开始处理大型项目时,这会变得乏味而快速。
使用此技术时唯一要记住的是,您的TEMPLATE_LOADERS
设置中必须有django.template.loaders.app_directories.Loader
。这是默认设置,因此您通常不必担心。
在 django 文档中有一个很好的指南:https://docs.djangoproject.com/en/1.7/intro/reusable-apps/
回答你实际提出的问题:
您的index.html
应该在这里:C:\Python34\mysite\polls\templates\polls\index.html
。如果不是,那就是你做错了。
在相关说明中,您可能不应该将项目放在 Python 目录中。
【讨论】:
您好,Knyght,感谢您的回复。我的 index.html 文件位于您上面提到的路径中 [C:\Python34\mysite\polls\templates\polls\index.html。] 但我仍然遇到同样的错误。任何帮助将不胜感激 你能粘贴你的整个设置文件吗?并打印 BASE_DIR 的值并检查它是否正确? 我已将整个 settings.py 文件添加到上面的问题部分。谢谢你的协助..!我已经坚持了 2 天了..! 嗯,有几件事。 TEMPLATE_DIRS 不应该被注释掉,但我认为那是你测试的东西。另外,'NAME': os.path.join(BASE_DIR, 'C://Python34/mysite/db.sqlite3'),
也不对。当您使用os.path.join()
时,您将第二个参数添加到您的基本目录,即您的manage.py
所在的目录。所以您最终会得到c:/path/to/project/c://python/etc
,这没有任何意义。此外,我认为您只需要在c:
之后使用一个正斜杠。但是os.path.join()
的第二个参数应该只是'db.sqlite3'
。
但实际上看起来您的代码(未注释)应该可以工作。检查回溯是否仍然相同。从这一行可以看出:C:\Python34\mysite\polls\templates\polls\index.html (File does not exist)
,它正在寻找正确的位置。可能是区分大小写的问题还是拼写错误?【参考方案4】:
您忘记在 settings.py 的 INSTALLED_APP 中添加您的应用配置
INSTALLED_APPS = (
'polls.apps.PollsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
)
startapp 命令创建一个 apps.py 文件。因为它不使用 default_app_config (a 不鼓励使用的 API),您必须指定应用配置的路径,例如'polls.apps.PollsConfig',在 INSTALLED_APPS 以供使用(而不仅仅是 'polls')。
【讨论】:
【参考方案5】:检查你是否忘记了 's'
/投票/模板
它的
'/polls/templates' 文件夹。
【讨论】:
【参考方案6】:在你的 settings.py 文件中,添加这个
TEMPLATE_DIR = os.path.join(BASE_DIR,'templates')
然后在 TEMPLATES DIRS 中添加这个,
TEMPLATES = [
...
'DIRS': [TEMPLATE_DIR,],
...
,]
【讨论】:
【参考方案7】:我遇到了同样的问题,我注意到site-packages
中有另一个名为index
的 HTML 文件。所以我只是将我当前的 HTML 文件更改为 index1
并且它有效。
【讨论】:
【参考方案8】:确保您没有将 detail.html 拼错为 details.html。这是我的问题。
【讨论】:
【参考方案9】:尝试替换:
template = loader.get_template('polls/index.html')
用这个:
template = loader.get_template('index.html')
【讨论】:
【参考方案10】:问题在于您的文件夹结构。由于您位于 polls
文件夹中,因此您应该使用此 template = loader.get_template('index.html')
而不是 template = loader.get_template('polls/index.html')
这是因为 python 路径的工作原理,请参阅此处OS Path
【讨论】:
【参考方案11】:您应该将模板放在 templates/polls/
结构化的投票应用程序中。这样完整路径将类似于mysite/polls/templates/polls/file.html
【讨论】:
以上是关于TemplateDoesNotExist 在 /polls/的主要内容,如果未能解决你的问题,请参考以下文章
TemplateDoesNotExist :在 Django 上未检测到模板
Django 管理站点:TemplateDoesNotExist?
TemplateDoesNotExist at / Home.html 异常类型:TemplateDoesNotExist
TemplateDoesNotExist 在 /polls/