Partial uploads with ASIFormDataRequest
Is that even possible? 开发者_如何学GoMaybe by using the Content-Range HTTP header? I would appreciate any help on this!
Partial uploads certainly aren't possible using the Content-Range: header.
If you have control of the server you can implement your own way of doing partial uploads over HTTP, eg. using a CGI script that you send a POST to with a field to indicate the range of the file to be uploaded.
精彩评论