自己也是跟着别人的博客敲的出现的问题,这个是模板找不到路径。
在包含wsgi.py的同级目录中找到settings.py
然后在settings.py 找到这段代码:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'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',
],
},
},
]
出现上述问题主要是这里的DIRS:[] 中括号里面的内容为空,这里我们只需要填上
os.path.join(BASE_DIR, 'templates')
os.path.join(BASE_DIR, 'templates')