我是django的初学者,我知道有关stackoverflow的解决方案存在类似问题,但解决方案对我不起作用,或者我无法理解它们。这是我的settings.py文件。无法弄清楚这有什么问题,因为我在“/ dongo /”错误时出现了“TemplateDoesNotExist”。
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_PATH=os.path.join(BASE_DIR,'templates')
TEMPLATE_DIRS=((TEMPLATE_PATH,'templates'),)
SECRET_KEY = '+za_-(=00o_qbgv4&$9#%i96p9j2$!i6bznqp)0yls3mwjd43s'
DEBUG = True
ALLOWED_HOSTS = []
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rango',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
)
ROOT_URLCONF = 'tango_with_django_project.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'tango_with_django_project.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_URL = '/static/'
这是我的views.py文件:
from django.shortcuts import render
def index(request):
return render(request,'rango/index.html')
答案 0 :(得分:1)
根据您的模板设置,'APP_DIRS':True ,表示Django将搜索您应用的目录,寻找'templates'文件夹。因此,在 rango 应用文件夹中创建目录 templates / rango / ,并确保 index.html 位于该文件夹中。
或者,如果您的模板文件夹位于其他位置,请将模板目录的完整路径放在TEMPLATE设置' DIRS'中:[/ full / path / to / templates / folder] 强>