TemplateDoesNotExist at /polls/ - 在 Django 教程中

Posted

技术标签:

【中文标题】TemplateDoesNotExist at /polls/ - 在 Django 教程中【英文标题】:TemplateDoesNotExist at /polls/ - in Django Tutorial 【发布时间】:2014-07-05 08:56:15 【问题描述】:

我一直在尝试 Django 教程(文档),但现在被这个错误困扰了 2 天。我将在下面粘贴我的views.py、settings.py 和我的目录结构。 视图.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)

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/'

Urls.Py

from django.conf.urls import patterns, url
from polls import views

urlpatterns = patterns('',
    # ex: /polls/
    url(r'^$', views.index, name='index'),
    # ex: /polls/5/
    url(r'^(?P<poll_id>\d+)/$', views.detail, name='detail'),
    # ex: /polls/5/results/
    url(r'^(?P<poll_id>\d+)/results/$', views.results, name='results'),
    # ex: /polls/5/vote/
    url(r'^(?P<poll_id>\d+)/vote/$', views.vote, name='vote'),
)

这是我得到的错误回溯。

Environment:


Request Method: GET
Request URL: http://127.0.0.1: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:\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

我认为问题在于指向 /mysite/polls/templates/polls/index.html 中的 index.html 文件。 这是我的文件结构 mysite/polls/templates/polls/index.html。

如果有人能解决这个问题,那将是一个很大的帮助。任何帮助,将不胜感激。提前致谢!

【问题讨论】:

你为什么评论TEMPLATE_DIRS?这是 django 找到你的模板的地方 您发布的 urls.py 是项目的主要 urls.py 还是投票应用程序中的 urls.py?教程相关部分:docs.djangoproject.com/en/1.6/intro/tutorial03/… @andrey :对不起,我正在尝试其他东西,所以评论了 template_dirs。即使我使用 template_dirs,它也会给出同样的错误。 @shtuff.it :它的投票 urls.py。 /mysite/polls/urls.py 它在回溯中查看的最后一个位置是:C:\Python34\mysite\polls\templates\polls\index.html,这似乎与您指示模板所在的位置相匹配,但是它说文件不存在。此路径是否与您放置 index.html 的位置匹配? 【参考方案1】:

您应该像这样将您的模板目录添加到setting.py 文件中:

TEMPLATE_DIRS=(
  "C:/python27/Lib/site-packages/django/bin/project1/templates",
)

【讨论】:

【参考方案2】:

请尝试用我在下面编写的代码块替换您的模板,复制并替换您的模板:

TEMPLATES = [
    
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': ['polls/templates'],
    'APP_DIRS': True,
    'OPTIONS': 
        'context_processors': [

            'django.contrib.auth.context_processors.auth',
            'django.template.context_processors.debug',
            'django.template.context_processors.i18n',
            'django.template.context_processors.media',
            'django.template.context_processors.static',
            'django.template.context_processors.tz',
                'django.contrib.messages.context_processors.messages',
            ],
        ,
    ,
]

我认为您的 template_dirs=[] 变量不能正常工作。如果您在 1.9 上,那么它会贬值并被过度写入/忽略。如果您的模板文件夹位于不同的位置,那么只需在其中写一些疯狂的东西并在回溯中查找它,然后将其与您想要的路径进行比较并从那里开始......

希望这有帮助

【讨论】:

【参考方案3】:

以这种方式将模板目录添加到setting.py 时使用绝对路径:

'DIRS': ["C:\\Users\username\project\\templates"],

【讨论】:

【参考方案4】:

您唯一需要做的就是在模板文件夹中创建投票文件夹,如the doc 中所示

现在我们或许可以直接放模板了 在 polls/templates 中(而不是创建另一个 polls 子目录), 但这实际上是个坏主意。 Django会选择第一个 模板它会找到名称匹配的模板,并且如果您有一个模板 在不同的应用程序中使用相同的名称,Django 将无法 区分它们。我们需要能够将 Django 指向 正确的一个,确保这一点的最佳方法是对它们进行命名空间。 也就是说,通过将这些模板放在另一个名为 应用程序本身。

就像

问候。

【讨论】:

以上是关于TemplateDoesNotExist at /polls/ - 在 Django 教程中的主要内容,如果未能解决你的问题,请参考以下文章

Django出错提示TemplateDoesNotExist at /

TemplateDoesNotExist at /polls/ - 在 Django 教程中

python Django问题:TemplateDoesNotExist at /index/

Django:无法让主页正确显示 TemplateDoesNotExist at /

Django 管理员 TemplateSyntaxError / TemplateDoesNotExist at /admin/

TemplateDoesNotExist at /base/index.html 部署到heroku时