当前位置:  开发笔记 > 编程语言 > 正文

Django设置未知参数:TEMPLATE_DEBUG

如何解决《Django设置未知参数:TEMPLATE_DEBUG》经验,为你挑选了1个好方法。

嗨,我正在关注djangoproject网站上的教程,我在localhost上收到错误说:

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

Shang Wang.. 18

我想你需要这样做:

DEBUG = True 

TEMPLATES = [
    {
        # something else
        'OPTIONS': {
            'debug': DEBUG,
        },
    },
]

Django过去接受TEMPLATE_DEBUG变量,但由于Django> = 1.8,所以不再允许这样做,并且如上所述被替换.

Django doc.



1> Shang Wang..:

我想你需要这样做:

DEBUG = True 

TEMPLATES = [
    {
        # something else
        'OPTIONS': {
            'debug': DEBUG,
        },
    },
]

Django过去接受TEMPLATE_DEBUG变量,但由于Django> = 1.8,所以不再允许这样做,并且如上所述被替换.

Django doc.

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有