繁体   English   中英

$。单次申请时

[英]$.when apply for single request

我尝试在代码中$.when apply 但是,对于单个和多个请求,格式返回似乎有所不同。 我该如何满足呢? 我试图在外面再没有别的东西。

$.when.apply(null, apiRequestList).then(function () {
    for (var i = 0; i < arguments.length; i++) {
       var value = arguments[0];
    }
});

这是我不想做的。

if (apiRequestList.length === 1) {
    $.ajax({

    });
} else {
    $.when.apply(null, apiRequestList).then(function () {
        for (var i = 0; i < arguments.length; i++) {
           var value = arguments[0];
        }
    });

}

apiRequestList的长度为1时,您可以简单地将arguments转换为数组:

$.when.apply(null, apiRequestList).then(function() {

    var _arguments = Array.prototype.slice.call(arguments);
    if (Array.isArray(apiRequestList) && apiRequestList.length === 1)
        _arguments = [arguments];

    for (var i = 0; i < _arguments.length; i++) {
        var value = _arguments[i][0];
        console.log(value);
    }
});

jsFiddle上的实时示例 (因为我们无法在堆栈片段上执行ajax):

function x(a) {
  return $.post("/echo/html/", {
    html: "a = " + a,
    delay: Math.random()
  });
}
function doIt(apiRequestList) {
  $.when.apply(null, apiRequestList).then(function() {

      var _arguments = arguments;
      if (Array.isArray(apiRequestList) && apiRequestList.length === 1)
          _arguments = [arguments];

      for (var i = 0; i < _arguments.length; i++) {
          var value = _arguments[i][0];
          console.log(value);
      }
      console.log("----");
  });
}
doIt([x(1), x(2), x(3)]);
doIt([x(4)]);

输出示例(由于Math.random()而有所不同):

a = 4
----
a = 1
a = 2
a = 3
----

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM