假设我有一个延迟函数:
尝试1:
$.when(validatePerson(123), validatePerson(456))
.done(function(data) { })
.fail(function(data1, data2) { });
尝试2:
$.when(validatePerson(123), validatePerson(456))
.done(function(data) { })
.fail(function(data1) { },
function(data2) { });
我想异步进行2次AJAX调用,但是在失败时我希望能够确定第1次,第2次或两次调用中的哪一次失败,这样我就可以向用户显示适当的错误。
e.g。
但我似乎无法让它发挥作用。 在尝试1中, data1 参数仅包含其中一个结果, data2 未定义。
在Attempt 2中,我使用相同的参数调用两次函数回调。
答案 0 :(得分:0)
$.when()
终止。你不能得到所有被拒绝的承诺。您可以将它与其他一些代码一起使用来跟踪所有故障。
这里' sa $.settle()
等待你传递给它的所有承诺要么被解析要么被拒绝,并返回一个PromiseInspection对象数组,你可以从中判断哪个被解析,哪个被拒绝以及它们的解析值是什么或者拒绝的理由是:
(function() {
function isPromise(p) {
return p && (typeof p === "object" || typeof p === "function") && typeof p.then === "function";
}
function wrapInPromise(p) {
if (!isPromise(p)) {
p = $.Deferred().resolve(p);
}
return p;
}
function PromiseInspection(fulfilled, val) {
return {
isFulfilled: function() {
return fulfilled;
}, isRejected: function() {
return !fulfilled;
}, isPending: function() {
// PromiseInspection objects created here are never pending
return false;
}, value: function() {
if (!fulfilled) {
throw new Error("Can't call .value() on a promise that is not fulfilled");
}
return val;
}, reason: function() {
if (fulfilled) {
throw new Error("Can't call .reason() on a promise that is fulfilled");
}
return val;
}
};
}
// pass either multiple promises as separate arguments or an array of promises
$.settle = function(p1) {
var args;
if (Array.isArray(p1)) {
args = p1;
} else {
args = Array.prototype.slice.call(arguments);
}
return $.when.apply($, args.map(function(p) {
// make sure p is a promise (it could be just a value)
p = wrapInPromise(p);
// Now we know for sure that p is a promise
// Make sure that the returned promise here is always resolved with a PromiseInspection object, never rejected
return p.then(function(val) {
return new PromiseInspection(true, val);
}, function(reason) {
// convert rejected promise into resolved promise by returning a resolved promised
// One could just return the promiseInspection object directly if jQuery was
// Promise spec compliant, but jQuery 1.x and 2.x are not so we have to take this extra step
return wrapInPromise(new PromiseInspection(false, reason));
});
})).then(function() {
// return an array of results which is just more convenient to work with
// than the separate arguments that $.when() would normally return
return Array.prototype.slice.call(arguments);
});
}
// simpler version that just converts any failed promises
// to a resolved value of what is passed in, so the caller can just skip
// any of those values in the returned values array
// Typically, the caller would pass in null or 0 or an empty object
$.settleVal = function(errorVal, p1) {
var args;
if (Array.isArray(p1)) {
args = p1;
} else {
args = Array.prototype.slice.call(arguments, 1);
}
return $.when.apply($, args.map(function(p) {
p = wrapInPromise(p);
return p.then(null, function(err) {
return wrapInPromise(errorVal);
});
}));
}
})();
用法:
$.settle(arrayOfPromises).then(function(results) {
// results is an array of PromiseInspection objects and you can
// tell which are resolved and which are rejected
results.forEach(function(item, index) {
if (item.isFulfilled()) {
console.log("promise #" + index + " is fulfilled with value: ", item.value(););
} else {
console.log("promise #" + index + " is rejected with reason: ", item.reason(););
}
});
});