我想在服务器中显示一个简单的问候,但收到错误消息“找不到页面”。这是我的代码:Analytic_web.urls.pyfrom django.contrib import adminfrom django.urls import include, path urlpatterns = [ path(r'jas/', include('website.urls')), path('admin/', admin.site.urls),]website.urls.py:from django.urls import pathfrom . import viewsurlpatterns = [ path(r'jas/', views.home, name='home'),]views.py:from django.shortcuts import renderfrom django.http import HttpResponsedef home(request): return render(request, '/templates/website/home.html' )主页.html:<h1>Helllllllloooooooooowwwwwwwwwwwww</h1>
1 回答
紫衣仙女
TA贡献1839条经验 获得超15个赞
在 website.urls.py 中,尝试:
path('', views.home, name='home'),
而不是这个
path(r'jas/', views.home, name='home'),
并在 Analytic_web.urls.py 中尝试:
path('jas/', include('website.urls')),
而不是这个
path(r'jas/', include('website.urls')),
希望这会有所帮助。
添加回答
举报
0/150
提交
取消