I have been studying the process of the file uploading via http. My question is that how the file is upload via ajax and not through full page postbacks. I want to know how the file is transmitted via ajax. I read this article. The article mentioned says this method is not possible if the FormData is not available. But I want to know is there anyother method to make the ajax file upload work on all the browser without using iframe method?
相关问题
- Views base64 encoded blob in HTML with PHP
- Angular RxJS mergeMap types
- Carriage Return (ASCII chr 13) is missing from tex
- Using :remote => true with hover event
- How to store image outside of the website's ro
without
FormData
you need to useiframe
. Alternativly there are libraries which emulate the functionality using a hidden flash or silverlight.