Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法上传大电影文件(大约 5GB)并在某些时候中断上传过程,注销并在 2/3 小时后返回网站继续上传?
当然,简历应该来自同一台计算机并引用相同的文件。
使用 socket.io 和 HTML5 filereader API 是可行的。使用 filereader API,您可以将视频文件分割成更小的块,然后通过 Web 套接字将它们发送到 Node.js。因为这些块定义明确且可枚举,所以只要服务器跟踪当前下载的块,您就可以随时恢复上传。您可能会发现这个有趣的教程与您的要求非常相似。