Parser Classes in Django REST
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSONParser
FormParser
MultiPartParser
request.data
will be aQueryDict
containing all the form parameters.request.files
will be aQueryDict
containing all the form files.FileUploadParser
request.file
is used to access the contents of uploaded file.