view视图里面得写法
def article_read(request, article_id, title):
return HttpResponse(f'文章的id是{article_id},标题是{title}')
def phone_number(request, phone_num):
return HttpResponse(f'正则表达式方案{phone_num}')
url里面得写法
# 动态路径书写方案
path('article/<int:article_id>/<str:title>/', article_read, name='article_read'),
# 正则路径表达方式(正则匹配收集好)
re_path('^phone/(?P<phone_num>1[3456789]\d{9})/$', phone_number)
|