I can not save the image in this ImageField.
when sending data back:
{ \"image\": [\"No file was submitted. Check the encoding t
I think you can use request.data instead after django rest framework 3.0. The usage of request.DATA and request.FILES is now pending deprecation in favor of a single request.data attribute that contains all the parsed data.
request.data
django rest framework 3.0
request.DATA
request.FILES
You can check it from here