使用 ASIFormDataRequest 进行部分上传
这可能吗?也许通过使用 Content-Range HTTP 标头? 我将不胜感激任何帮助!
Is that even possible? Maybe by using the Content-Range HTTP header?
I would appreciate any help on this!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Content-Range: 标头当然不可能进行部分上传。
如果您可以控制服务器,您可以实现自己的方式通过 HTTP 进行部分上传,例如:使用 CGI 脚本向其发送 POST,其中包含一个字段来指示要上传的文件的范围。
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.