1
2
3
4
5
6
7
8
9
10
11
12
13
14
| urlpatterns = [
path('', views.index, name="index"),
path('home/', views.home, name="home"),
# 带参数的路由url,路径转换器
# 官方文档:https://docs.djangoproject.com/zh-hans/2.2/topics/http/urls/#path-converters
# int类型,<int:age>只会匹配整数类型
path('show/<int:age>/', views.show, name="show"),
# slug类型,只匹配数字字母下划线
path('list/<slug:name>/', views.list_user, name="list_user"), # path类型,匹配所有内容
path('access/<path:c1>/', views.access, name="access"),
# 直接使用参数
path('<name>/<age>', views.test2, name="arg"),
]
|