我正在尝试在代码中使用$.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];
}
});
}
最佳答案
当arguments
的长度为1时,您可以简单地将apiRequestList
转换为数组:
$.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);
}
});
Live Example on 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
----
关于javascript - $。单次申请时,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47470646/