Fixed #31210 -- Doc'd how to reproduce HttpRequest.is_ajax() in release notes.

This commit is contained in:
Adam Johnson 2020-02-03 12:43:11 +00:00 committed by Mariusz Felisiak
parent 85cb59cba9
commit 469bf2db15
1 changed files with 4 additions and 0 deletions

View File

@ -482,6 +482,10 @@ Miscellaneous
the new :meth:`.HttpRequest.accepts` method if your code depends on the
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
:class:`~django.contrib.messages.storage.cookie.CookieStorage` is different
from the format generated by older versions of Django. Support for the old