仅上传大文件 (100mb+) 崩溃 Chrome
Uploading large file (100mb+) crashes Chrome only
我允许用户通过网站上传 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 在处理大文件时遇到问题的已知问题吗?
我认为真正解决此问题的唯一方法是将文件拆分为多个块,然后在服务器上将其重新组合在一起。这当然是可能的,但值得找出它是否是将来要注意的限制。
浏览器因内存不足而崩溃。
不是将文件加载到内存中,而是将文件对象传递给 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);
我允许用户通过网站上传 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 在处理大文件时遇到问题的已知问题吗?
我认为真正解决此问题的唯一方法是将文件拆分为多个块,然后在服务器上将其重新组合在一起。这当然是可能的,但值得找出它是否是将来要注意的限制。
浏览器因内存不足而崩溃。
不是将文件加载到内存中,而是将文件对象传递给 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);