How Django processes a request

Example
Here’ s a sample URLconf:

from django.urls import path
from . import views
urlpatterns = [
path(‘articles/2003/’, views.special_case_2003),
path(‘articles/int:year/’, views.year_archive),
path(‘articles/int:year/int:month/’, views.month_archive),
path(‘articles/int:year/int:month/slug:slug/’, views.article_detail),
]

Notes:
• To capture a value from the URL, use angle brackets.
• Captured values can optionally include a converter type. For example, use int:name to capture an integer
parameter. If a converter isn’t included, any string, excluding a / character, is matched.
• There’s no need to add a leading slash, because every URL has that. For example, it’s articles, not /
articles.
Example requests:
• A request to /articles/2005/03/ would match the third entry in the list. Django would call the function
views.month_archive(request, year=2005, month=3).
• /articles/2003/ would match the first pattern in the list, not the second one, because the patterns are
tested in order, and the first one is the first test to pass. Feel free to exploit the ordering to insert special cases
like this. Here, Django would call the function views.special_case_2003(request)
• /articles/2003 would not match any of these patterns, because each pattern requires that the URL end
with a slash.
• /articles/2003/03/building-a-django-site/ would match the final pattern. Django
would call the function views.article_detail(request, year=2003, month=3,
slug=“building-a-django-site”).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值