django 1.11 报表:django.template.exceptions.TemplateDoesNotExist:

解决方法:
在settings.py 中TEMPLATES 参数 dirs加入设置:os.path.join(BASE_DIR, ‘templates’).replace(‘\’, ‘/’)
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’,
],
},
},
]

注意:windows 必须加上replace(‘\’, ‘/’)

你可能感兴趣的:(python报错集合)