sleep函数,将程序执行挂起一段时间,阻塞程序的运行
ES6方案:
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function test() {
console.log("Hello");
await sleep(1000);
console.log("World");
}
test();
ES5死循环阻塞:
function sleep(ms) {
ms += new Date().getTime();
while (new Date().getTime() < ms) {}
}
function test2() {
console.log("Hello");
sleep(1000);
console.log("World");
}
test2();
HTTP1
HTTP2
如何实现长连接?
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有