TemplateDoesNotExist 在 /home/
TemplateDoesNotExist at /home/
我正在观看视频教程,但出现错误。
唯一的区别是作者使用副行文本,而我使用 VSCode
是什么导致了错误?
enter image description here
这是我的观点代码:
from django.http import HttpResponse
from django.shortcuts import render
def about(request):
return HttpResponse("Inforamation about")
def home(request):
return render(request, 'home.html')
这是我的网址代码:
from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [
path('admin/', admin.site.urls),
path('about/', views.about),
path('home/', views.home),
]
和我的设置代码:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ['templates'],
'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')],
您应该从更改文件夹结构开始。您的模板文件夹结构应如下所示:
mysite
----|templates
----|mysite
----|home.html
之后,将模板路径从 'home.html'
更改为 'mysite/home.html'
。
问题出在文件夹的错误位置 'templates'
我正在观看视频教程,但出现错误。 唯一的区别是作者使用副行文本,而我使用 VSCode 是什么导致了错误? enter image description here
这是我的观点代码:
from django.http import HttpResponse
from django.shortcuts import render
def about(request):
return HttpResponse("Inforamation about")
def home(request):
return render(request, 'home.html')
这是我的网址代码:
from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [
path('admin/', admin.site.urls),
path('about/', views.about),
path('home/', views.home),
]
和我的设置代码:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ['templates'],
'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')],
您应该从更改文件夹结构开始。您的模板文件夹结构应如下所示:
mysite
----|templates
----|mysite
----|home.html
之后,将模板路径从 'home.html'
更改为 'mysite/home.html'
。
问题出在文件夹的错误位置 'templates'