2
我正在學校項目女巫同時發送乘法ajax請求。如何在jQuery ajax manager插件中獲取當前請求數量?
我使用的是ajax manager插件,這裏是link。
有沒有辦法得到當前的請求號碼?
我正在學校項目女巫同時發送乘法ajax請求。如何在jQuery ajax manager插件中獲取當前請求數量?
我使用的是ajax manager插件,這裏是link。
有沒有辦法得到當前的請求號碼?
似乎是在$.manageajax._activeRequest[name]
一些信息
//seems to be the internal id of the current request
var id = $.manageajax._activeRequest[name].queue[0];
//should give you the xhr for the current request
var crXHR = $.manageajax._activeRequest[name].id.xhr;
name
應該對應於$.manageAjax.create('someAjaxProfileName'...
給出的這些信息可能會稍有不正確(僅推斷的形式查看源使用Firebug或類似以驗證)