django TEMPLATES
Posted 种心收默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django TEMPLATES相关的知识,希望对你有一定的参考价值。
?: (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.
TEMPLATES = [ { ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
#主要看下面这行。需要将templates添加至dirs中。应该是某个版本改了这个东西,不再是TEMPLATES_DIRS了。 ‘DIRS‘: [os.path.join(os.path.dirname(__file__),‘templates‘).replace(‘\\‘,‘/‘),], ‘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‘, ], }, }, ]
以上是关于django TEMPLATES的主要内容,如果未能解决你的问题,请参考以下文章
Django的学习全局的static和templates的使用