1👍
✅
in your code for _f in request.FILES:
_f is a unicode type what mean it’s just a string.
try to use _f = request.FILES.get('your_parameter_name')
to replace it
Source:stackexchange.com