Changes between Initial Version and Version 2 of Ticket #32004
- Timestamp:
- Sep 14, 2020, 11:36:45 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32004
- Property Cc added
-
Ticket #32004 – Description
initial v2 1 Regarding `request.FILES` and `multipart/form-data` requests I think it worth to mention that the `filename` parameter of the `content-disposition` header of the part is [https://github.com/django/django/blob/master/django/http/multipartparser.py#L625 crutial] to handle the part as a file.1 Regarding `request.FILES` and `multipart/form-data` requests I think it worth to mention in the doc that the `filename` parameter of the `content-disposition` header of the part is [https://github.com/django/django/blob/master/django/http/multipartparser.py#L625 crucial] to handle the part as a file. 2 2 3 3 I used a low level library to generate requests and I thought Django will use a temporary file (and file name) for this content.