如何将本地目录加载到urls.py中的路径中



我在笔记本电脑中保存了我的homepage.html文件,请参阅下图D:\Python\WebDjango\BaseCoffeehouse\coffeehouse\templates。

然后在urls.py(在VSCode中打开(中,我添加了如下路径:

path('D:/Python/WebDjango/BaseCoffeehouse/coffeehouse/templates', 
TemplateView.as_view(template_name='homepage.html'), name='homepage'),

当我运行服务器(python manage.py runserver(时,我收到一条错误消息";页面未找到404";在默认端口8000中。

那么,我应该如何打开我的homepage.html文件呢?

注意事项:

1。(看起来你把templates文件夹放在了根应用程序的目录中。确保templates文件夹与manage.py在同一层次结构中,以使默认的Django模板路由工作:

# settings.py
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [BASE_DIR / '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",
],
},
},
]

2.(在urls.py文件中,路径实例不应该";点";到您的html文件,而不是到weburl。所以试试

urlpatterns = [
path('', YourView.as_view(), name='home'),
],

例如,如果您访问localhost/120.0.0.1,它将返回模板。另请参阅TemplateView的官方文档。

相关内容

  • 没有找到相关文章

最新更新