gpt4 book ai didi

javascript - 如何在 Javascript 中编写阻塞同步方法?

转载 作者:数据小太阳 更新时间:2023-10-29 04:31:23 26 4
gpt4 key购买 nike

我正在尝试模拟一种需要很长时间进行测试但无法在 Javascript 中找到执行此操作的好方法的方法。除了写一个很长的 for 循环之外,还有什么好的方法吗?

最佳答案

a loop that checks time怎么样? ?

function sleep(milliSeconds){
var startTime = new Date().getTime(); // get the current time
while (new Date().getTime() < startTime + milliSeconds); // hog cpu until time's up
}

关于javascript - 如何在 Javascript 中编写阻塞同步方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10527503/

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