Django 1.8 TEMPLATE-DEBUG =真实设置设置模板未找到错误

时间:2015-05-28 04:24:37

标签: django debugging templates

DJANGO 1.8 Python 3.4

当Django模板加载器实际上报告它找到了模板时,我之前遇到过TEMPLATES数组设置生成错误“找不到模板”。我可以通过恢复到TEMPLATE_DIRS设置来解决这个问题。See the Question

我需要调试模板,所以我将TEMPLATE_DEBUG设置为True ...它再次生成模板未找到错误:

的index.html

请求方法:GET 请求网址:http://127.0.0.1:7000/ Django版本:1.8.2 例外类型:TemplateDoesNotExist 例外值:

index.html

Exception Location:     /home/sdr/sl/lib/python3.4/site-packages/django/template/loader.py in render_to_string, line 138
Python Executable:  /home/sdr/sl/bin/python
Python Version:     3.4.3
Python Path:    

['/home/sdr/sl/agryp',
 '/home/sdr/pycharm-4.5/helpers/pydev',
 '/home/sdr/sl/src/tastypie',
 '/home/sdr/sl/agryp',
 '/usr/local/lib/python34.zip',
 '/usr/local/lib/python3.4',
 '/usr/local/lib/python3.4/plat-linux',
 '/usr/local/lib/python3.4/lib-dynload',
 '/home/sdr/sl/lib/python3.4/site-packages']

Server time:    Thu, 28 May 2015 04:05:11 +0000
Template-loader postmortem

Django tried loading these templates, in this order:

    Using loader django.template.loaders.filesystem.Loader:
        /home/sdr/sl/agryp/templates/index.html (File exists)

如果我使用TEMPLATES = []设置或TEMPLATE_DIRS设置,则错误仍然存​​在。

我希望对这个问题有所了解。

1 个答案:

答案 0 :(得分:1)

确保您在settings.py中提供了模板文件夹路径或在views.py中检查模板路径是否正确

在Django 1.8中,它将是这样的

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        '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',
            ],
        },
    },
]

这对我有用。