嗨,我正在关注djangoproject 网站上的教程,但在我的本地主机上出现错误消息:
Unknown parameters: TEMPLATE_DEBUG
我的 settings.py 看起来像这样:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'TEMPLATE_DEBUG':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',
],
},
},
]
我在 TEMPLATE 上添加了“TEMPLATE_DEBUG”,否则我会收到以下警告
?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in Django 1.8 and the TEMPLATES dictionary takes precedence. You must put the values of the following settings into your default TEMPLATES dict: TEMPLATE_DEBUG.
我的模板文件夹在我的应用程序中,即:
my_project_name/polls/templates/polls/index.html