javascript - During the image upload process, in what form is the image ultimately uploaded to the server? In addition to binary streams and base64-encoded images, what other forms are there for uploading?
怪我咯2017-05-19 10:19:15
0
2
492
As the title states, during the image upload process, in what form are the images ultimately uploaded to the server? In addition to binary streams and base64-encoded images, what other forms are there for uploading?
There is another kind: Blob object
Reference document: Blob - Web API interface | MDN
js can also be uploaded through Websocket.