第一种错误:
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',
],
},
},
]
修改完后,可以直接重新请求路径! 破费没问题!
网友评论