templates\index.html (Source does not exist) 这个问题是templates的路径没有设置好!

第一种错误:

 django.template.exceptions.TemplateDoesNotExist:

第二种错误

Django tried loading these templates, in this order:

Using engine django:

django.template.loaders.app_directories.Loader: D:\Python\Python3.6\lib\site-packages\django\contrib\admin\templates\index.html (Source does not exist)

以上两种错误,均可用以下方法解决!
检查一下setting.py文件中的两个地方:BASE_DIR和TEMPLATES
照搬设置即可:

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

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

修改完后,可以直接重新请求路径! 破费没问题!

    原文作者:帅气的猪猪
    原文地址: https://www.jianshu.com/p/8166a4ff88a5
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞