HttpRequest.read(size=None) [source]
QueryDict.items() Just like the standard dictionary items() method, except this uses the same last-value logic
HttpResponse.writable() [source] Always True. This method makes an HttpResponse
class HttpRequest [source]
HttpRequest.encoding A string representing the current encoding used to decode form submission data (or None, which
class JsonResponse(data, encoder=DjangoJSONEncoder, safe=True, json_dumps_params=None, **kwargs) [source]
HttpResponse.has_header(header) Returns True or False based on a case-insensitive check for a header
QueryDict.__setitem__(key, value) [source] Sets the given key to [value] (a
QueryDict.__contains__(key) Returns True if the given key is set. This lets you do, e.g., if "foo" in request
HttpRequest.urlconf This will be used as the root URLconf for the current request, overriding the ROOT_URLCONF
Page 5 of 10