gpt4 book ai didi

node.js - 如何在 mocha nodejs 中等待

转载 作者:行者123 更新时间:2023-11-28 21:24:53 24 4
gpt4 key购买 nike

代码-

.then (() => {
console.log("Wait");
setTimeout(function(){console.log("Wait to process")},1500);
this.timeout(2000);
})
.then(() => {
console.log("Get ABC");
return common.getApiData(url)})

现在,当我运行这段代码时,它会记录如下数据 -等待获取 ABC等待处理(它等待上面指定的时间)

我想在调用 getApiData 方法之前设置超时..

最佳答案

假设您正在使用真正的 promise ,这是您应该传递给 then 的函数:

.then(function (value) {
var p = new Promise ();
setTimeout (function () {
p.resolve(value)
}, 2000)
return p
})

下一个 then 将在 promise 完成后被调用。

关于node.js - 如何在 mocha nodejs 中等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43252919/

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