如何通过 XMLHttpRequest 上传文件时获取进度

发布于 2024-12-04 08:10:53 字数 424 浏览 1 评论 0原文

我想知道如何使用 XMLHTTPRequest 获取文件上传的进度。在 Firefox 中,onprogress 方法根本不会触发,而在 chrome 中,它仅在文件上传完成后触发。

function fileUpload(file)
{
    var formData = new FormData();
    formData.append('file', file);

    var xhr = new XMLHttpRequest();
    xhr.onprogress = function(e)
    {
        alert('progress');
    };

    xhr.open('POST', 'post.php', true);

    xhr.send(formData);  // multipart/form-data
}

I am wondering how to get the progress of a file upload using XMLHTTPRequest. In Firefox the onprogress method does not fire at all, and in chrome it only fires after the file has finished uploading.

function fileUpload(file)
{
    var formData = new FormData();
    formData.append('file', file);

    var xhr = new XMLHttpRequest();
    xhr.onprogress = function(e)
    {
        alert('progress');
    };

    xhr.open('POST', 'post.php', true);

    xhr.send(formData);  // multipart/form-data
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿光 2024-12-11 08:10:53

尝试xhr.upload.onprogress。在 XMLHttpRequest2 规范中,XMLHttpRequest 有 upload 属性。

能够注册进度事件。两者都用于下载(将
XMLHttpRequest 对象本身的监听器)和上传(放
XMLHttpRequestUpload 对象上的侦听器,由上传返回
属性)。
http://dev.w3.org/2006/webapi/XMLHttpRequest-2/ #差异

Try xhr.upload.onprogress. In the XMLHttpRequest2 spec XMLHttpRequest have upload attribute.

The ability to register for progress events. Both for downloads (put
listeners on the XMLHttpRequest object itself) and uploads (put
listeners on the XMLHttpRequestUpload object, returned by the upload
attribute).
http://dev.w3.org/2006/webapi/XMLHttpRequest-2/#differences

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文