How to implement file upload progress bar on web?

后端 未结 7 935
深忆病人
深忆病人 2020-12-01 05:56

I would like display something more meaningful that animated gif while users upload file to my web application. What possibilities do I have?

Edit: I am using .

相关标签:
7条回答
  • 2020-12-01 06:30

    If you are interested how all this generally works client-site, this is it:

    All the solutions hook up the form via javascript and change the forms target to a newly created, invisible IFRAME. Then they are free to use AJAX to request some status about the file from the server.

    The IFRAME trick is needed because all the scripts running in the window that is doing the upload will hang until the the request is completed at which time the file is fully uploaded.

    0 讨论(0)
提交回复
热议问题