如何使用jquery监控ajax请求的进度响应

Posted

技术标签:

【中文标题】如何使用jquery监控ajax请求的进度响应【英文标题】:how to monitor progress response of ajax request with jquery 【发布时间】:2014-09-20 00:27:08 【问题描述】:

如何用jquery监控ajax请求的进度响应

我调用了一个在服务器上执行多个查找的 API。一次调用可能会导致 5-10 次查找。每次查找完成时,API 都会在 GET 响应中附加一个字符串。完成所有查找后,连接将关闭。

我希望有一个在进度时触发的回调,并且最好找到一种在每次完成查找时解析服务器进度响应(访问数据)的方法。

我的问题是进度回调从未被调用。

到目前为止,这是我的代码。我试图修补 xmlHttpRequest 对象并扩展 jquery 的 ajax 方法。

(function addXhrProgressEvent($) 
    var originalXhr = $.ajaxSettings.xhr;
    $.ajaxSetup(
        xhr : function() 
            var req = originalXhr(), that = this;
            if (req) 
                if ( typeof req.addEventListener == "function" && that.progress !== undefined) 
                    req.addEventListener("progress", function(evt) 
                        that.progress(evt);
                    , false);
                
                if ( typeof req.upload == "object" && that.progressUpload !== undefined) 
                    req.upload.addEventListener("progress", function(evt) 
                        that.progressUpload(evt);
                    , false);
                
            
            return req;
        
    );
)(jQuery); 

$('#update').on('click', function(e) 
    e.preventDefault();

    var json = $.ajax(
        headers : 
            'Authorization' : "Basic " + btoa("abced:becd")
        ,
        url : "http://123.123.123.123:5487/api/v1/check/" + $(this).attr('data-key'),
        type : "GET",
        crossDomain : true,
        dataType : "text",
        async : false,
        progress : function(evt) 
            /*this does not fire*/
            alert('callback fired!');
            /*this does not fire*/
            if (evt.lengthComputable) 
                console.log("Loaded " + parseInt((evt.loaded / evt.total * 100), 10) + "%");
             else 
                console.log("Length not computable.");
            
        ,
        success : function(data, textStatus, jqXHR) 

        ,
        error : function(jqXHR, textStatus, errorThrown) 

        
    );

);

);

这是服务器的响应

['task 1 completed']

\n
\n
\n

['task 3 completed']


\n
\n
\n

['task 4 completed']


...

请求标头

Accept  text/plain, */*; q=0.01
Accept-Encoding gzip, deflate
Accept-Language de,en-US;q=0.7,en;q=0.3
Authorization   Basic 12123456020600662232112311==
Host    123.123.123.123:1234
Origin  http://123.123.123.132
Referer http://123.123.123.123/index.php/db/s-s-relaunch
User-Agent  Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0

响应头

Access-Control-Allow-Head...    X-Requested-With, Content-Type, Authorization
Access-Control-Allow-Meth...    GET,POST,PUT,OPTIONS
Access-Control-Allow-Orig...    *
Content-Length  100000
Content-Type    text/plain
Date    Mon, 28 Jul 2014 18:06:27 GMT
Server  BaseHTTP/0.3 Python/2.7.3

【问题讨论】:

【参考方案1】:

jQuery ajax API 中没有内置进度功能,但您可以添加事件侦听器来处理信息。

查看这个问题的答案:

What is the cleanest way to get the progress of JQuery ajax request?

【讨论】:

这就是我正在做的事情。查看补丁...忘记在我的帖子中添加它。刚刚更新了。

以上是关于如何使用jquery监控ajax请求的进度响应的主要内容,如果未能解决你的问题,请参考以下文章

带有json响应的jQuery ajax请求,如何?

怎么样在jQuery progressbar中通过Ajax请求实现后台进度实时功能

如何在 Firefox 中解码来自 jQuery $.ajax 请求的 XML 响应

如何利用jquery ajax实现循环的ajax请求

如何获取 jQuery.ajax 响应状态?

如何在 jQuery ajax 调用中将 JSON 响应解析为 JSONP?