1. <small id='sftgY'></small><noframes id='sftgY'>

    • <bdo id='sftgY'></bdo><ul id='sftgY'></ul>
    <i id='sftgY'><tr id='sftgY'><dt id='sftgY'><q id='sftgY'><span id='sftgY'><b id='sftgY'><form id='sftgY'><ins id='sftgY'></ins><ul id='sftgY'></ul><sub id='sftgY'></sub></form><legend id='sftgY'></legend><bdo id='sftgY'><pre id='sftgY'><center id='sftgY'></center></pre></bdo></b><th id='sftgY'></th></span></q></dt></tr></i><div id='sftgY'><tfoot id='sftgY'></tfoot><dl id='sftgY'><fieldset id='sftgY'></fieldset></dl></div>
  2. <tfoot id='sftgY'></tfoot>

    1. <legend id='sftgY'><style id='sftgY'><dir id='sftgY'><q id='sftgY'></q></dir></style></legend>
    2. 使用 XMLHttpRequest 上传大文件时的进度条

      时间:2023-10-14
    3. <legend id='ovu0n'><style id='ovu0n'><dir id='ovu0n'><q id='ovu0n'></q></dir></style></legend>

        <bdo id='ovu0n'></bdo><ul id='ovu0n'></ul>
        <i id='ovu0n'><tr id='ovu0n'><dt id='ovu0n'><q id='ovu0n'><span id='ovu0n'><b id='ovu0n'><form id='ovu0n'><ins id='ovu0n'></ins><ul id='ovu0n'></ul><sub id='ovu0n'></sub></form><legend id='ovu0n'></legend><bdo id='ovu0n'><pre id='ovu0n'><center id='ovu0n'></center></pre></bdo></b><th id='ovu0n'></th></span></q></dt></tr></i><div id='ovu0n'><tfoot id='ovu0n'></tfoot><dl id='ovu0n'><fieldset id='ovu0n'></fieldset></dl></div>
        <tfoot id='ovu0n'></tfoot>
        • <small id='ovu0n'></small><noframes id='ovu0n'>

                  <tbody id='ovu0n'></tbody>
                本文介绍了使用 XMLHttpRequest 上传大文件时的进度条的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我正在尝试使用 XMLHttpRequest 和 file.slice 将一些大文件上传到服务器.
                我已经在文档和其他各种链接的帮助下做到了这一点.
                由于上传大文件是一项漫长的工作,我想为用户提供一个进度条.
                经过更多阅读后,我遇到了 示例,理论上,正是我需要的.
                通过获取示例代码并使其适应我的需求,我达到了

                I am trying to upload some large files to the server using XMLHttpRequest and file.slice.
                I've manage doing this with the help of documentations and other various links.
                Since uploading large file is a lengthily job, i would like to provide the user with a progress bar.
                After some more readings i've come across on an example that, theoretically, does exactly what i need.
                By taking the sample code and adapting it to my needs i reached

                var upload =
                {
                blobs: [],
                pageName: '',
                bytesPerChunk: 20 * 1024 * 1024,
                currentChunk: 0,
                loaded: 0,
                total: 0,
                file: null,
                fileName: "",
                
                uploadChunk: function (blob, fileName, fileType) {
                    var xhr = new XMLHttpRequest();
                
                    xhr.onreadystatechange = function () {
                        if (xhr.readyState == 4) {
                            if (xhr.responseText) {
                                // alert(xhr.responseText);
                            }
                        }
                    };
                
                    xhr.addEventListener("load", function (evt) {
                        $("#dvProgressPrcent").html("100%");
                        $get('dvProgress').style.width = '100%';
                    }, false);
                
                    xhr.addEventListener("progress", function (evt) {
                        if (evt.lengthComputable) {
                            var progress = Math.ceil(((upload.loaded + evt.loaded) / upload.total) * 100);
                            $("#dvProgressPrcent").html(progress + "%");
                            $get('dvProgress').style.width = progress + '%';
                        }
                    }, false);
                
                    xhr.upload.addEventListener("progress", function (evt) {
                        if (evt.lengthComputable) {
                            var progress = Math.ceil(((upload.loaded + evt.loaded) / upload.total) * 100);
                            $("#dvProgressPrcent").html(progress + "%");
                            $get('dvProgress').style.width = progress + '%';
                        }
                    }, false);
                
                    xhr.open('POST', upload.pageName, false);
                
                    xhr.setRequestHeader("Content-Type", "multipart/form-data");
                    xhr.setRequestHeader("X-File-Name", fileName);
                    xhr.setRequestHeader("X-File-Type", fileType);
                    xhr.send(blob);
                },
                upload: function (file) {
                    var start = 0;
                    var end = 0;
                    var size = file.size;
                
                    var date = new Date();
                    upload.fileName = date.format("dd.MM.yyyy_HH.mm.ss") + "_" + file.name;
                
                    upload.loaded = 0;
                    upload.total = file.size;
                
                    while (start < size) {
                        end = start + upload.bytesPerChunk;
                        if (end > size) {
                            end = size;
                        }
                
                        var blob = file.slice(start, end);
                        upload.uploadChunk(blob, upload.fileName, file.type);
                        start = end;
                        upload.loaded += start;
                    }
                
                    return upload.fileName;
                }
                };
                

                电话就像(没有验证)

                upload.upload(document.getElementById("#upload").files[0]);
                

                我的问题是进度事件没有触发.
                我已经为进度事件尝试了 xhr.addEventListener 和 xhr.upload.addEventListener (一次和一次),但它永远不会触发.onreadystatechange 和 load 事件触发就好了.

                My problem is that the progress event doesn't trigger.
                I've tried xhr.addEventListener and with xhr.upload.addEventListener (each at a time and both at a time) for the progress event but it never triggers. The onreadystatechange and load events trigger just fine.

                如果我做错了什么,我将不胜感激

                I would greatly appreciate help with what i am doing wrong

                更新
                经过多次尝试,我设法模拟了一个进度,但我遇到了另一个问题:Chrome 的 UI 在上传期间没有更新.
                现在的代码是这样的

                Update
                After many attempts i've manage to simulate a progress but i've ran into another problem: Chrome's UI is not updating during the upload.
                The code looks like this now

                var upload =
                {
                    pageName: '',
                    bytesPerChunk: 20 * 1024 * 1024,
                    loaded: 0,
                    total: 0,
                    file: null,
                    fileName: "",
                
                    uploadFile: function () {
                        var size = upload.file.size;
                
                        if (upload.loaded > size) return;
                
                        var end = upload.loaded + upload.bytesPerChunk;
                        if (end > size) { end = size; }
                
                        var blob = upload.file.slice(upload.loaded, end);
                
                        var xhr = new XMLHttpRequest();
                
                        xhr.open('POST', upload.pageName, false);
                
                        xhr.setRequestHeader("Content-Type", "multipart/form-data");
                        xhr.setRequestHeader("X-File-Name", upload.fileName);
                        xhr.setRequestHeader("X-File-Type", upload.file.type);
                
                        xhr.send(blob);
                
                        upload.loaded += upload.bytesPerChunk;
                
                        setTimeout(upload.updateProgress, 100);
                        setTimeout(upload.uploadFile, 100);
                    },
                    upload: function (file) {
                        upload.file = file;
                
                        var date = new Date();
                        upload.fileName = date.format("dd.MM.yyyy_HH.mm.ss") + "_" + file.name;
                
                        upload.loaded = 0;
                        upload.total = file.size;
                
                        setTimeout(upload.uploadFile, 100);
                
                
                        return upload.fileName;
                    },
                    updateProgress: function () {
                        var progress = Math.ceil(((upload.loaded) / upload.total) * 100);
                        if (progress > 100) progress = 100;
                
                        $("#dvProgressPrcent").html(progress + "%");
                        $get('dvProgress').style.width = progress + '%';
                    }
                };
                


                更新 2
                我已经设法修复它并模拟了一个也适用于 chrome 的进度条.
                我已经用有效的代码示例更新了之前的代码示例.
                您可以通过减小一次上传的块的大小来更频繁地刷新"栏谢谢你的帮助


                Update 2
                I've managed to fix it and simulate a progress bar that works in chrome too.
                i've updated previous code sample with the one that works.
                You can make the bar 'refresh' more often by reducing the size of the chunk uploaded at a time Tahnk you for your help

                推荐答案

                如 https://stackoverflow.com/a/中所述3694435/460368,你可以这样做:

                if(xhr.upload)
                     xhr.upload.onprogress=upload.updateProgress;
                

                updateProgress: function updateProgress(evt) 
                {
                   if (evt.lengthComputable) {
                       var progress = Math.ceil(((upload.loaded + evt.loaded) / upload.total) * 100);
                       $("#dvProgressPrcent").html(progress + "%");
                       $get('dvProgress').style.width = progress + '%';
                   }
                }
                

                这篇关于使用 XMLHttpRequest 上传大文件时的进度条的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何向 roku 中的某些服务器发出 api 请求 下一篇:为什么叫 XMLHttpRequest?

                相关文章

                最新文章

                    <small id='FL0Wt'></small><noframes id='FL0Wt'>

                    <i id='FL0Wt'><tr id='FL0Wt'><dt id='FL0Wt'><q id='FL0Wt'><span id='FL0Wt'><b id='FL0Wt'><form id='FL0Wt'><ins id='FL0Wt'></ins><ul id='FL0Wt'></ul><sub id='FL0Wt'></sub></form><legend id='FL0Wt'></legend><bdo id='FL0Wt'><pre id='FL0Wt'><center id='FL0Wt'></center></pre></bdo></b><th id='FL0Wt'></th></span></q></dt></tr></i><div id='FL0Wt'><tfoot id='FL0Wt'></tfoot><dl id='FL0Wt'><fieldset id='FL0Wt'></fieldset></dl></div>

                  1. <tfoot id='FL0Wt'></tfoot>

                    <legend id='FL0Wt'><style id='FL0Wt'><dir id='FL0Wt'><q id='FL0Wt'></q></dir></style></legend>
                      <bdo id='FL0Wt'></bdo><ul id='FL0Wt'></ul>