我已经学会了热爱和利用承诺链。然而,有时我需要在执行过程中重复一个阶段。有没有一种方法可以做到这一点,而不会将承诺链分解为单独的方法?
dataLayer.loginUser(loginData)
.then(function (response) {
console.log('loginUser response -> ', response);
return dataLayer.getData();
}.bind(this))
.then(function (response) {
console.log('loginUser response -> ', response);
if (response.message === 'JWT_EXPIRED') {
// Somehow go back to the previous stage
return dataLayer.refreshJWT().then(...);
}
// next stage
return ...
});
不,没有。您将需要一个单独的函数,可以引用该函数并再次调用。
当然,您可以使用一个命名的函数表达式作为then
回调,这样它就不会"破坏"您的链:
dataLayer.loginUser(loginData)
.then(function tryToGetData(response) {
console.log('loginUser response -> ', response);
return dataLayer.getData().then(function (response) {
console.log('loginUser response -> ', response);
if (response.message === 'JWT_EXPIRED') {
return tryToGetData(response); // again!
return response;
});
}).then(function(response) {
// next stage
return …;
});