博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Node.js 非阻塞的 Sleep 要怎么写 ?
阅读量:6671 次
发布时间:2019-06-25

本文共 181 字,大约阅读时间需要 1 分钟。

比如这个 .

function sleep(milliSeconds){    var startTime =new Date().getTime();    while(new Date().getTime()< startTime + milliSeconds);  }  sleep(10000); //暂停10s

QAQ 但是这样 其它的操作也会被阻塞.

转载地址:http://zllxo.baihongyu.com/

你可能感兴趣的文章