I am creating a project on google app engine. Here I am trying to upload a file to blobstore.
I have an html file with multiple forms, where each form has a file upload button
<input type="file">
Now as soon as user selects a file using this button the file must start uploading to GAE blobstore.
I have the python code which can do this uploading stuff but I am not able to link my backend (python) code to the file I've browsed.
Also, as there are multiple forms the page must not get refreshed.
I have found a solution to page refresh in google closure(using a pop up), but it is not desire in my project. I believe there is no other way in closure library.
I am trying to do it using ajax call but my very limited knowledge of ajax is preventing me to get the dsired results.
Using JQUERY is not an option.
I hope my question is clear, please revert back if not.
Any help is much appreciated.
Thanks