mirror of https://github.com/django/django.git
Fixed #31210 -- Doc'd how to reproduce HttpRequest.is_ajax() in release notes.
This commit is contained in:
parent
85cb59cba9
commit
469bf2db15
|
@ -482,6 +482,10 @@ Miscellaneous
|
||||||
the new :meth:`.HttpRequest.accepts` method if your code depends on the
|
the new :meth:`.HttpRequest.accepts` method if your code depends on the
|
||||||
client ``Accept`` HTTP header.
|
client ``Accept`` HTTP header.
|
||||||
|
|
||||||
|
If you are writing your own AJAX detection method, ``request.is_ajax()`` can
|
||||||
|
be reproduced exactly as
|
||||||
|
``request.headers.get('x-requested-with') == 'XMLHttpRequest'``.
|
||||||
|
|
||||||
* The encoding format of cookies values used by
|
* The encoding format of cookies values used by
|
||||||
:class:`~django.contrib.messages.storage.cookie.CookieStorage` is different
|
:class:`~django.contrib.messages.storage.cookie.CookieStorage` is different
|
||||||
from the format generated by older versions of Django. Support for the old
|
from the format generated by older versions of Django. Support for the old
|
||||||
|
|
Loading…
Reference in New Issue