2👍
✅
You can’t upload files with a GET request, only with a POST. And the files will then be found in request.FILES
, so you can iterate over request.FILES.getlist('image')
directly.
Source:stackexchange.com