I can not save the image in this ImageField.
when sending data back:
{ \"image\": [\"No file was submitted. Check the encoding t
You seem to be missing the request.FILES argument to the serializer constructor in the your post and put handlers.
request.FILES
post
put
serializer = PhotoSerializer(data=request.DATA, files=request.FILES)