I try to upload image, using Ajax without django forms.
It not return errors. Everything it\'s ok, it save in database \"name\" and \"description\" but not save \"im
The issue here is with the Ajax code, you cannot directly send the image via a variable.
To do so, you would have to create FormData and then add the file to it, an example can be found here: Send Images Via Ajax.
Or, simply use the already existing jquery Ajax Form Plugin which does all the hard work for you.
Your choice, hope this helps :)