Opened 11 years ago
Closed 11 years ago
#22441 closed Uncategorized (invalid)
Error in QueryDict documentation documentation
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | 1.6 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
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.