2
0

urlresolvers.txt 8.2 KB

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