如何在 php 和 jquery 中暂停和恢复上传?
有人可以提供一些关于使用 php 和 jquery 实现暂停和恢复上传的指示吗?
问候,
Can someone give some pointers regarding implementing pause and resume uploads using php and jquery ?
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有办法使用 jQuery/PHP 暂停上传。上传文件依赖于 POST 请求,该请求要么已发送,要么未发送。
然而,这个插件允许您取消它们,以及其他一些非常好的东西(全部没有Flash) 。
如果您想要更多选项,请使用 Uploadify,它使用 Flash。
There isn't a way to pause uploads with jQuery/PHP. Uploading a file relies on a POST request, which is either sent or isn't.
However, this plugin allows you to cancel them, along with some other very nice things (all without Flash).
If you want more options, go for Uploadify, which uses Flash.
我们可以使用 html5 来做到这一点
http://hacks.mozilla.org/2011/04/resumeupload /
we can use html5 to do this
http://hacks.mozilla.org/2011/04/resumeupload/