jQuery文件上传显示剩余时间?

时间:2014-12-03 19:06:35

标签: javascript jquery file-upload jquery-file-upload

您好我正在使用jQuery File Upload

工作正常,我向用户显示一个进度条,显示上传进度,代码如下:

$('#fileupload').fileupload({
    /* ... */
    progressall: function (e, data) {
        var progress = parseInt(data.loaded / data.total * 100, 10);
        $('#progress .bar').css(
            'width',
            progress + '%'
        );
    }
});

在我的页面上,我刚刚包含了jquery.fileupload.js文件。在progressall函数的数据中,我可以看到比特率,总文件大小和当前加载的数据,正如我所说,按预期更新我的进度条。但是,在网站上阅读此link,它表明我可以获得额外的信息,包括剩余时间?然而,我一直无法做到这一点。还有一个jquery.fileupload-ui.js文件 - 我尝试在我的jquery.fileupload.js之后包含它,但我没有看到时间仍然有问题被添加到progressall函数中的数据。我也尝试删除jquery.fileupload.js并且只包含了jquery.fileupload-ui.js但是这会破坏我的文件上传并且它无法正常运行。

无论如何,我可以轻松地使用比特率/数据加载和总大小来计算剩余时间,或者是否有人建议我应该从插件中获得开箱即用的扩展信息的正确方法?

4 个答案:

答案 0 :(得分:6)

我发现最简单的解决方案是计算" fileuploadprogress"事件:

var secondsRemaining = (data.total - data.loaded) * 8 / data.bitrate;

在我的情况下,我只包括jquery.fileupload.js而不是jquery.fileupload-ui.js所以我更喜欢这个解决方案。

但是,当您包含jquery.fileupload-ui.js组件时,您将获得"扩展进度"信息可用,但我相信这只适用于" fileuploadprogressall"事件而不是" fileuploadprogress"。 https://github.com/blueimp/jQuery-File-Upload/wiki/Extended-progress-information

答案 1 :(得分:5)

使用比特率在技术上有效,但它似乎是一个瞬时值,所以你的剩余时间需要大量的平滑,以防止它像疯了一样弹跳。不是建立一些复杂的加权平均系统,而是更容易使用花费的时间和当前进度来估计剩余时间。

首先,在add callback中的数据对象上标记您的开始时间:

input.bind('fileuploadadd', function(e, data) {
  ...
  data.submitted = new Date().getTime();
  data.submit();
});

然后很容易在进度回调中保持一个漂亮,平稳的时间:

input.bind('fileuploadprogress', function(e, data) {
  var progress = data.loaded / data.total;
  var timeSpent = new Date().getTime() - data.submitted;
  var secondsRemaining = Math.round(((timeSpent / progress) - timeSpent) / 1000);
});

答案 2 :(得分:3)

这是他们为自定义ui所做的事情。 您可以使用

中的data参数
$('#fileupload').bind('fileuploadprogress', function (e, data) {
    _renderExtendedProgress(data);
});

像这样调用_renderExtendedProgress

_renderExtendedProgress: function (data) {
    return this._formatBitrate(data.bitrate) + ' | ' +
        this._formatTime(
            (data.total - data.loaded) * 8 / data.bitrate
        ) + ' | ' +
        this._formatPercentage(
            data.loaded / data.total
        ) + ' | ' +
        this._formatFileSize(data.loaded) + ' / ' +
        this._formatFileSize(data.total);
}

_formatFileSize: function (bytes) {
    if (typeof bytes !== 'number') {
        return '';
    }
    if (bytes >= 1000000000) {
        return (bytes / 1000000000).toFixed(2) + ' GB';
    }
    if (bytes >= 1000000) {
        return (bytes / 1000000).toFixed(2) + ' MB';
    }
    return (bytes / 1000).toFixed(2) + ' KB';
}

_formatBitrate: function (bits) {
    if (typeof bits !== 'number') {
        return '';
    }
    if (bits >= 1000000000) {
        return (bits / 1000000000).toFixed(2) + ' Gbit/s';
    }
    if (bits >= 1000000) {
        return (bits / 1000000).toFixed(2) + ' Mbit/s';
    }
    if (bits >= 1000) {
        return (bits / 1000).toFixed(2) + ' kbit/s';
    }
    return bits.toFixed(2) + ' bit/s';
}

_formatTime: function (seconds) {
    var date = new Date(seconds * 1000),
        days = Math.floor(seconds / 86400);
    days = days ? days + 'd ' : '';
    return days +
        ('0' + date.getUTCHours()).slice(-2) + ':' +
        ('0' + date.getUTCMinutes()).slice(-2) + ':' +
        ('0' + date.getUTCSeconds()).slice(-2);
}

_formatPercentage: function (floatValue) {
    return (floatValue * 100).toFixed(2) + ' %';
}

您可以在https://github.com/blueimp/jQuery-File-Upload/blob/7d46990486ff08acfc001b6368b09bce6712c2c2/js/jquery.fileupload-ui.js

中查看他们的源代码

答案 3 :(得分:0)

鉴于扩展进度信息的示例,请尝试...

$('#fileupload').bind('fileuploadprogress', function (e, data) {
    // Log the current bitrate for this upload:
    // console.log(data.bitrate);
    console.log(data);
});

...检查通过此数据点报告的数据。然后,您可以访问所需内容。