What is the best way to upload files in a modern browser

后端 未结 5 2115
孤街浪徒
孤街浪徒 2020-12-22 22:43

I want to upload a (single) file to a server and show the progress of the upload.

I know I can upload a file using HTTP POST. I\'m not familiar with web-sockets, but

5条回答
  •  天涯浪人
    2020-12-22 23:26

    Files can be uploaded via AJAX.

    Use the jQuery form plugin. It does all the dirty work of binding the files to the form and serializing it. It is also capable of showing upload progress.

    Server stack hasn't got much to do with it.

    Demo

提交回复
热议问题