urlresolvers.txt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. =================================
  2. ``django.urls`` utility functions
  3. =================================
  4. .. module:: django.urls
  5. ``reverse()``
  6. =============
  7. If you need to use something similar to the :ttag:`url` template tag in
  8. your code, Django provides the following function:
  9. .. function:: reverse(viewname, urlconf=None, args=None, kwargs=None, current_app=None)
  10. ``viewname`` can be a :ref:`URL pattern name <naming-url-patterns>` or the
  11. callable view object. For example, given the following ``url``::
  12. from news import views
  13. path('archive/', views.archive, name='news-archive')
  14. you can use any of the following to reverse the URL::
  15. # using the named URL
  16. reverse('news-archive')
  17. # passing a callable object
  18. # (This is discouraged because you can't reverse namespaced views this way.)
  19. from news import views
  20. reverse(views.archive)
  21. If the URL accepts arguments, you may pass them in ``args``. For example::
  22. from django.urls import reverse
  23. def myview(request):
  24. return HttpResponseRedirect(reverse('arch-summary', args=[1945]))
  25. You can also pass ``kwargs`` instead of ``args``. For example::
  26. >>> reverse('admin:app_list', kwargs={'app_label': 'auth'})
  27. '/admin/auth/'
  28. ``args`` and ``kwargs`` cannot be passed to ``reverse()`` at the same time.
  29. If no match can be made, ``reverse()`` raises a
  30. :class:`~django.urls.NoReverseMatch` exception.
  31. The ``reverse()`` function can reverse a large variety of regular expression
  32. patterns for URLs, but not every possible one. The main restriction at the
  33. moment is that the pattern cannot contain alternative choices using the
  34. vertical bar (``"|"``) character. You can quite happily use such patterns for
  35. matching against incoming URLs and sending them off to views, but you cannot
  36. reverse such patterns.
  37. The ``current_app`` argument allows you to provide a hint to the resolver
  38. indicating the application to which the currently executing view belongs.
  39. This ``current_app`` argument is used as a hint to resolve application
  40. namespaces into URLs on specific application instances, according to the
  41. :ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`.
  42. The ``urlconf`` argument is the URLconf module containing the URL patterns to
  43. use for reversing. By default, the root URLconf for the current thread is used.
  44. .. note::
  45. The string returned by ``reverse()`` is already
  46. :ref:`urlquoted <uri-and-iri-handling>`. For example::
  47. >>> reverse('cities', args=['Orléans'])
  48. '.../Orl%C3%A9ans/'
  49. Applying further encoding (such as :func:`urllib.parse.quote`) to the output
  50. of ``reverse()`` may produce undesirable results.
  51. ``reverse_lazy()``
  52. ==================
  53. A lazily evaluated version of `reverse()`_.
  54. .. function:: reverse_lazy(viewname, urlconf=None, args=None, kwargs=None, current_app=None)
  55. It is useful for when you need to use a URL reversal before your project's
  56. URLConf is loaded. Some common cases where this function is necessary are:
  57. * providing a reversed URL as the ``url`` attribute of a generic class-based
  58. view.
  59. * providing a reversed URL to a decorator (such as the ``login_url`` argument
  60. for the :func:`django.contrib.auth.decorators.permission_required`
  61. decorator).
  62. * providing a reversed URL as a default value for a parameter in a function's
  63. signature.
  64. ``resolve()``
  65. =============
  66. The ``resolve()`` function can be used for resolving URL paths to the
  67. corresponding view functions. It has the following signature:
  68. .. function:: resolve(path, urlconf=None)
  69. ``path`` is the URL path you want to resolve. As with
  70. :func:`~django.urls.reverse`, you don't need to worry about the ``urlconf``
  71. parameter. The function returns a :class:`ResolverMatch` object that allows you
  72. to access various metadata about the resolved URL.
  73. If the URL does not resolve, the function raises a
  74. :exc:`~django.urls.Resolver404` exception (a subclass of
  75. :class:`~django.http.Http404`) .
  76. .. class:: ResolverMatch
  77. .. attribute:: ResolverMatch.func
  78. The view function that would be used to serve the URL
  79. .. attribute:: ResolverMatch.args
  80. The arguments that would be passed to the view function, as
  81. parsed from the URL.
  82. .. attribute:: ResolverMatch.kwargs
  83. The keyword arguments that would be passed to the view
  84. function, as parsed from the URL.
  85. .. attribute:: ResolverMatch.url_name
  86. The name of the URL pattern that matches the URL.
  87. .. attribute:: ResolverMatch.route
  88. The route of the matching URL pattern.
  89. For example, if ``path('users/<id>/', ...)`` is the matching pattern,
  90. ``route`` will contain ``'users/<id>/'``.
  91. .. attribute:: ResolverMatch.tried
  92. .. versionadded:: 3.2
  93. The list of URL patterns tried before the URL either matched one or
  94. exhausted available patterns.
  95. .. attribute:: ResolverMatch.app_name
  96. The application namespace for the URL pattern that matches the
  97. URL.
  98. .. attribute:: ResolverMatch.app_names
  99. The list of individual namespace components in the full
  100. application namespace for the URL pattern that matches the URL.
  101. For example, if the ``app_name`` is ``'foo:bar'``, then ``app_names``
  102. will be ``['foo', 'bar']``.
  103. .. attribute:: ResolverMatch.namespace
  104. The instance namespace for the URL pattern that matches the
  105. URL.
  106. .. attribute:: ResolverMatch.namespaces
  107. The list of individual namespace components in the full
  108. instance namespace for the URL pattern that matches the URL.
  109. i.e., if the namespace is ``foo:bar``, then namespaces will be
  110. ``['foo', 'bar']``.
  111. .. attribute:: ResolverMatch.view_name
  112. The name of the view that matches the URL, including the namespace if
  113. there is one.
  114. A :class:`ResolverMatch` object can then be interrogated to provide
  115. information about the URL pattern that matches a URL::
  116. # Resolve a URL
  117. match = resolve('/some/path/')
  118. # Print the URL pattern that matches the URL
  119. print(match.url_name)
  120. A :class:`ResolverMatch` object can also be assigned to a triple::
  121. func, args, kwargs = resolve('/some/path/')
  122. One possible use of :func:`~django.urls.resolve` would be to test whether a
  123. view would raise a ``Http404`` error before redirecting to it::
  124. from urllib.parse import urlparse
  125. from django.urls import resolve
  126. from django.http import Http404, HttpResponseRedirect
  127. def myview(request):
  128. next = request.META.get('HTTP_REFERER', None) or '/'
  129. response = HttpResponseRedirect(next)
  130. # modify the request and response as required, e.g. change locale
  131. # and set corresponding locale cookie
  132. view, args, kwargs = resolve(urlparse(next)[2])
  133. kwargs['request'] = request
  134. try:
  135. view(*args, **kwargs)
  136. except Http404:
  137. return HttpResponseRedirect('/')
  138. return response
  139. ``get_script_prefix()``
  140. =======================
  141. .. function:: get_script_prefix()
  142. Normally, you should always use :func:`~django.urls.reverse` to define URLs
  143. within your application. However, if your application constructs part of the
  144. URL hierarchy itself, you may occasionally need to generate URLs. In that
  145. case, you need to be able to find the base URL of the Django project within
  146. its Web server (normally, :func:`~django.urls.reverse` takes care of this for
  147. you). In that case, you can call ``get_script_prefix()``, which will return
  148. the script prefix portion of the URL for your Django project. If your Django
  149. project is at the root of its web server, this is always ``"/"``.