django.template.exceptions.TemplateDoesNotExist: index.html可能是因为 index.html的路径不对

TemplateDoesNotExist: index.html问题解决

遇到的问题是这个:
django.template.exceptions.TemplateDoesNotExist: index.html可能是因为 index.html的路径不对_第1张图片很多博客说的解决办法是去setting中修改TEMPLATES 里面的’DIRS’: 为[os.path.join(BASE_DIR, ‘templates’)]。可是我的’DIRS’已经是这个,说明出现问题的原因不是这个。

发现在views.py中写的‘index.html’背景加深:
经过一番查询后发现是因为index.html不是在templates文件夹里面
django.template.exceptions.TemplateDoesNotExist: index.html可能是因为 index.html的路径不对_第2张图片
把index.html移到templates里面问题就解决了
注意创建文件的时候到templates下面创建,小毛病小问题有时候很难发现的。我遇到的问题和解决办法就分享到这里。

你可能感兴趣的:(django.template.exceptions.TemplateDoesNotExist: index.html可能是因为 index.html的路径不对)