2013-05-27 56 views
1

我有一个紧密的循环,通过xhr2获取PNG文件。在FF和IE10中正常工作。在Chrome中,当我列出的文件大约有5,500个时,我开始出现xhr错误。我喜欢async接口,因为我将这些请求与本地索引数据库存储请求交错。铬在太多的xhr请求

以下代码(我使用xhr2lib作为抓取,PouchDB作为IndexedDB API使用)。

我知道这是XHR2失败,因为在Chrome中,所有XHR2调用都在SaveDB()调用之前处理。当它失败时,我永远不会收到保存电话。

function getBlobs(fileList) { 
    console.log("starting to fetch blobs"); 
    $.each(fileList, function (i, val) { 
     var path = baseURL + val.id + "." + imageType; 
     $xhr.ajax({ 
      url: path, 
      dataType: "blob", 
      success: function (data) { saveBlob(data, val.size, val.id); } 
     }); 
    }); 
} 

function saveBlob(blob, length, id) { 
    if (blob.size != length) { 
     console.error("Blob Length found: " + blob.size + " expected: " + length); 
    } 
    putBlob(blob, id); 
    ++fetchCnt; 
    if (fetchCnt == manifest.files.length) { 
     setTimeout(fetchComplete, 0); 
    } 
} 

function fetchComplete() { 
    var startTime = vm.get("startTime"); 
    var elapsed = new Date() - startTime; 
    var fetchTime = ms2Time(elapsed); 
    vm.set("fetchTime", fetchTime); 
} 

function putBlob(blob, id) { 
    var cnt; 
    var type = blob.type; 
    DB.putAttachment(id + "/pic", blob, type, function (err, response) { 
     if (err) { 
      console.error("Could store blob: error: " + err.error + " reason: " + err.reason + " status: " + err.status); 
     } else { 
      console.log("saved: ", response.id + " rev: " + response.rev); 
      cnt = vm.get("blobCount"); 
      vm.set("blobCount", ++cnt); 
      if (cnt == manifest.files.length) { 
       setTimeout(storeComplete, 0); 
      } 
     } 
    }); 
} 

回答