Opened 11 years ago
Closed 11 years ago
#22441 closed Uncategorized (invalid)
Error in QueryDict documentation documentation
Description ¶
The Path to the QueryDict is wrongly mentioned.
It should be django.http.request.QueryDict instead of django.http.QueryDict.
In an HttpRequest object, the GET and POST attributes are instances of django.http.QueryDict. QueryDict is a dictionary-like class customized to deal with multiple values for the same key. This is necessary because some HTML form elements, notably <select multiple="multiple">, pass multiple values for the same key.
Note:
See TracTickets
for help on using tickets.
Hi,
QueryDict
is actually importable fromdjango.http
(that's because it's imported indjango/http/__init__.py
).What makes you say that the path in wrong?
Thanks.