Changes between Initial Version and Version 2 of Ticket #32004


Ignore:
Timestamp:
Sep 14, 2020, 11:36:45 AM (4 years ago)
Author:
Janos Roden
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32004

    • Property Cc Janos Roden 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.
     1Regarding `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.
    22
    33I used a low level library to generate requests and I thought Django will use a temporary file (and file name) for this content.
Back to Top