Django 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"

Posted ❦邪恶毅小人❦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"相关的知识,希望对你有一定的参考价值。

解决办法:在setting.py的TEMPLATES‘DIRS‘[]加入模版路径

os.path.join(BASE_DIR, ‘templates‘)
TEMPLATES = [
    {
        ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
        ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)],
        #os.path.join(BASE_DIR, ‘templates‘)没了这句,
        # 会显示django.template.exceptions.TemplateDoesNotExist: index.html
        ‘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 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"的主要内容,如果未能解决你的问题,请参考以下文章

./manage.py 对 Django 1.4 的测试给出了在 google appengine 上找不到的 Thing2Literal 导入

IIS7配置PHP 报错 "对找不到的文件启用文件监视"

Django新手:“找不到反向”

Django启动时找不到mysqlclient处理 django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.

jpype测试报错,找不到类raise _RUNTIMEEXCEPTION.PYEXC("Class %s not found" % name)

Django加载模版报错 'utf8' codec can't decode byte