Hello,
I use django rest framework at the server side, and phonegap/cordova at the client side using ajax/json requests. (for tests i use CURL)
Everything works well but i have a problem with the image uploading.
How i can do that? Is it possible through Rest/Json? or do i need to go through a form as usual?
if someone has an example on the client & server sides?
My model is a standard one:
photo = models.ImageField(upload_to=upload_path, null=True, blank = True)
It works well with the admin interface.
Any helps are welcome?
Regards,
Laurent