如何将文件切成碎片并在 Javascript FileApi 中恢复它

发布于 2024-12-29 23:09:50 字数 110 浏览 2 评论 0原文

我正在尝试创建 ajax 文件上传,但当您上传大于例如 800MB 的文件时,我遇到了错误:800MB google chrome 崩溃。

所以我想把它切成碎片然后恢复它,但是我该怎么做呢?

I'm trying to create ajax file upload but I have encountered an error with it, when you upload a file that is larger than for example:800MB google chrome crash.

So I thought to cut it into pieces and then restore it,but how do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离去的眼神 2025-01-05 23:09:50

您需要使用 javascript FileReader API 来帮助创建块并将其发送到服务器。该机制很简单,但如果您使用小块大小,则如果您异步上传,由于循环遍历所有卡盘,chrome 可能会再次崩溃。

您可以通过使用 Webworkers 来解决这个问题,Javascript Webworkers 充当单独的线程,如果可能的话最后使用 Websockets。

实现所有

You need to use javascript FileReader API that helps to create chunks and send it to the server. The mechanism is simple but if you are using small chunk size chrome might crash again if you are uploading asynchronously because of the looping through all the chucks.

Which you can solve the by using Webworkers, Javascript Webworkers acts as separate threads and finally use Websockets if possible.

Few Resources to implement all the

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文