Update Multiparser docs

This commit is contained in:
Lewis Kabui 2022-11-03 21:10:05 +03:00
parent b5ad794e66
commit c69e5acf31
No known key found for this signature in database
GPG Key ID: 444716A0A0572984

View File

@ -87,7 +87,7 @@ You will typically want to use both `FormParser` and `MultiPartParser` together
## MultiPartParser
Parses multipart HTML form content, which supports file uploads. `request.data` will be populated with a `QueryDict`.
Parses multipart HTML form content, which supports file uploads. `request.data` and `request.FILES` will be populated with a `QueryDict` and `MultiValueDict` respectively.
You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data.