在for循环中跳过一个case并继续ajax调用

时间:2018-01-08 05:10:13

标签: javascript ajax jsp

我在嵌套for循环中进行AJAX调用。有时可能会出现错误状态。有没有办法在循环中跳过该特定情况并继续循环?请帮助。

for(i=0;i<n;i++){
$.ajax({
     type: "GET",
     url : url,
     datatype: "json",
     success : function(data){
        // something here
     },
     error : function(xhr,status){
        // skip this case i and continue loop. Please help
     }
  });
 }

0 个答案:

没有答案