async function delay(time) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
}, time);
});
}
// 示例:延迟1秒 输出
(async () => {
await delay(1000);
console.log(“hello!”);
})();
async function delay(time) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
}, time);
});
}
// 示例:延迟1秒 输出
(async () => {
await delay(1000);
console.log(“hello!”);
})();
本文标题:node.js:setTimeout实现同步delay延时函数
发布时间:2022年10月21日 - 15时02分
最后更新:2022年10月21日 - 15时02分
许可协议: "署名-非商用-相同方式共享 3.0" 转载请保留原文链接及作者。