我如何在Node.js(Javascript)中等待,我需要暂停一段时间

我如何在Node.js(Javascript)中等待,我需要暂停一段时间,第1张

我如何在Node.js(Javascript)中等待,我需要暂停一段时间

最好的方法是将代码分成多个功能,如下所示:

function function1() {    // stuff you want to happen right away    console.log('Welcome to My Console,');}function function2() {    // all the stuff you want to happen after that pause    console.log('Blah blah blah blah extra-blah');}// call the first chunk of pre right awayfunction1();// call the rest of the pre and have it execute after 3 secondssetTimeout(function2, 3000);

它与 JohnnyHK 的解决方案相似,但是更加整洁并且易于扩展。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5111327.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存