javascript/AJAX file uploading -
I need to upload a local file to the server with Javascript / AJAX. The problem is how I choose a file Can I read it in a byte array?
PS: I can not use the HTML form to upload the file.
With HTML5, the FileReader API is. This lets you read the files your users have chosen. On the second day I only created a CSV parser using HTML5 and JSL, it was not difficult at all.
Since this is a new API, it is not well supported. See support here.
If you do not want to do this, you have to solve the flag which Benjamin has suggested.
If you want more information, go here. BADIA !!!
Comments
Post a Comment