gpt4 book ai didi

Javascript 递归 promise 陷入无限循环

转载 作者:行者123 更新时间:2023-12-03 09:32:22 26 4
gpt4 key购买 nike

我创建了一个递归 promise 函数:

this.testFunction = Bluebird.method(function (instanceID) {
var object = this;
return object.canSsh(instanceID)
.then(function (sshable) {
if (sshable) {
return object.onSshable(instanceID)
.then(function () {
return Bluebird.resolve();
});
}
else {
return Bluebird.delay((SSH_POLLING_INTERVAL * 1000))
.then(function () {
return object.testFunction(instanceID);
});
}
})
.catch(function (err) {
return Bluebird.reject(err);
});
});

然而,即使当sshable变为true时,这个函数也会在无限循环中不断递归地进行。我预计一旦我从 sshable block 返回,它应该存在该函数。

最佳答案

Even when sshable becomes true, this function keeps recursively going on and on in an infinite loop.

我无法重现。似乎有其他东西正在调用您的 testFunction,而不是来自延迟 then 回调的递归调用。

无论如何,您可以大大简化您的功能:

this.testFunction = function(instanceID) {
return this.canSsh(instanceID).then(function(sshable) {
if (sshable) {
return this.onSshable(instanceID);
} else {
return Bluebird.delay(SSH_POLLING_INTERVAL * 1000)
.then(this.testFunction.bind(this, instanceID));
}
}.bind(this))
};

关于Javascript 递归 promise 陷入无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31461937/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com