Recommended way to check file size on upload

前端 未结 10 924
南笙
南笙 2021-02-04 10:33

I am working on a web application which supports file uploading. I am already familiar checking the size in server side, but i wanted to check the file size in a client side.

10条回答
  •  醉酒成梦
    2021-02-04 11:11

    I haven't tested this, but isn't there a "Content-Length" header on the request? It will include more than just the file being uploaded, but you can use it as a benchmark to determine if the POST is too large to handle.

提交回复
热议问题