Отправляю изображение по апи и принимаю его с помощью данной вьюшки:
class ImageProfile(APIView):
parser_classes = [FileUploadParser]
def post(self, request, filename, format=None):
image = request.data['file']
ImageProfile.objects.create(image=image)
return Response(status=200)
Но она не находит filename хотя он передается параметром в http ответе:
POST /image/ HTTP/1.1
Host: 127.0.0.1:8000
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
cache-control: no-cache
Postman-Token: fcf56493-cdf1-4a23-a863-03dacb5a59ad
Content-Disposition: form-data; name="file"; filename="C:\Users\Marsel\Pictures\1_grunt.png