我正在使用django框架来开发我的简历的网站以及用于样式设计,我正在使用uikit css框架,但是由于它引发“找不到页面错误”,因此联系人模板的网址存在问题
Request URL: http://localhost:8000/contact/
Using the URLconf defined in myresume.urls, Django tried these URL patterns, in this order:
experience
education
contact
admin/
The current path, contact/, didn't match any of these.
我已经尝试使用re url模式,并且也使用了官方文档中提到的斜杠。联系人模板位于myapp / templates / myapp / contact.html
from django.urls import path
from . import views
urlpatterns=[
path('',views.home),
path('experience',views.experience),
path('education',views.education),
path('contact',views.contact),
]
我希望在我的浏览器中呈现联系人模板