gpt4 book ai didi

javascript - 上传大文件 (100mb+) 只会导致 Chrome 崩溃

转载 作者:行者123 更新时间:2023-11-29 20:48:12 31 4
gpt4 key购买 nike

我允许用户通过网站上传 CSV 文件。该文件正在使用 JavaScript 文件 API 读取,然后发送到服务器进行保存。

,   upload: function (prefix, numberType, file, name)
{
this.attributes = { // Set the data to be sent along
'upload': true,
'prefix': prefix,
'file': file,
'name': name,
'numberType': numberType
};

console.log('upload', this) // This will correctly show in the console

return this.sync('create', this, { // This is when Chrome crashes
xhr: function() {
var xhr = $.ajaxSettings.xhr();
xhr.upload.onprogress = function(evt){
document.querySelector('.uploadProgressBar').style.width = parseInt(evt.loaded/evt.total*100) + '%';
document.querySelector('#uploadNow').classList.add('percentageUpload');
document.querySelector('#uploadNow').innerText = parseInt(evt.loaded/evt.total*100) + '%';
};
return xhr;
}
});
}

在检查网络选项卡时,它看起来好像从未发送过请求,因此它在创建请求时中断了。这只会在文件大约 100mb 并且较小的文件可以正常上传时中断。除此之外,它在 Safari 和 Firefox 上都可以正常工作,因此这是 Chrome 特定的问题。这是 Chrome 处理大文件时遇到问题的已知问题吗?

我认为真正解决这个问题的唯一方法是将文件分成 block ,然后在服务器上将它们重新组合在一起。这当然是可能的,但值得了解它是否是 future 需要注意的限制。

最佳答案

浏览器因内存不足而崩溃。

不是将文件加载到内存中,而是将文件对象传递给 XMLHttpRequest,以便 Chrome 可以在上传表单中流式传输文件内容。

为此使用 FormData 对象:

// your file input
const file = document.getElementById('file').files[0];
// your form
var form = new FormData();
form.append('file', file);

const xhr = $.ajaxSettings.xhr();

xhr.upload.onprogress = function(evt) {
document.querySelector('.uploadProgressBar').style.width = parseInt(evt.loaded / evt.total * 100) + '%';
document.querySelector('#uploadNow').classList.add('percentageUpload');
document.querySelector('#uploadNow').innerText = parseInt(evt.loaded / evt.total * 100) + '%';
};
xhr.open('POST', 'http://example.com/'); // Url where you want to upload
xhr.send(form);

关于javascript - 上传大文件 (100mb+) 只会导致 Chrome 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53409068/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com