我在magento中使用dropzone.js上传文件。进度栏工作正常,但我也想显示进度百分比。跟随功能是为跨度添加样式。

uploadprogress: function(a, b) {
                var c, d, e, f, g;
                if (a.previewElement) {
                    for (f = a.previewElement.querySelectorAll("[data-dz-uploadprogress]"), g = [], d = 0, e = f.length; e > d; d++) c = f[d], g.push("PROGRESS" === c.nodeName ? c.value = b : c.style.width = "" + b + "%");
                    return g
                }
            },

在以下html中添加了style =“width:xx%”。

我还想显示%的结果,g在上面的代码中以文本形式返回,以便用户也可以看到数字。

最佳答案

假设您在进度栏中有一个跨度,例如:

<div class="progress">
    <div class="progress-bar progress-bar-primary" role="progressbar" data-dz-uploadprogress>
        <span class="progress-text"></span>
    </div>
</div>

您应该按以下方式定义您的uploadprogress函数:
uploadprogress: function(file, progress, bytesSent) {
    if (file.previewElement) {
        var progressElement = file.previewElement.querySelector("[data-dz-uploadprogress]");
        progressElement.style.width = progress + "%";
        progressElement.querySelector(".progress-text").textContent = progress + "%";
    }
}

09-25 16:50