#29208: Mistake in the documentation, request.POST['username'] is not working, 
but
request.POST.get('username') is woring!
--------------------------------------------+------------------------
               Reporter:  Marat Mkhitaryan  |          Owner:  nobody
                   Type:  Bug               |         Status:  new
              Component:  Documentation     |        Version:  2.0
               Severity:  Normal            |       Keywords:
           Triage Stage:  Unreviewed        |      Has patch:  0
    Needs documentation:  0                 |    Needs tests:  0
Patch needs improvement:  0                 |  Easy pickings:  0
                  UI/UX:  0                 |
--------------------------------------------+------------------------
 
https://docs.djangoproject.com/en/2.0/topics/auth/default/#django.contrib.auth.login

 {{{
 username = request.POST['username']
 password = request.POST['password']
 # MultiValueDictKeyError
 username = request.POST.get('username')
 password = request.POST.get('password')
 # No errors
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/29208>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/058.89dd5a7044fd5567cdb708a883d0ee7b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to