- Sleep代码
export const Sleep = (ms)=> {
return new Promise(resolve=>setTimeout(resolve, ms))
}
- 使用代码
await Sleep(1500)
先打印1,休眠1.5秒后打印2
async test(){
console.log(1)
await Sleep(1500)
console.log(2)
}
test()
2024-04-18 09:15:34 阅读次数:34
export const Sleep = (ms)=> {
return new Promise(resolve=>setTimeout(resolve, ms))
}
await Sleep(1500)
先打印1,休眠1.5秒后打印2
async test(){
console.log(1)
await Sleep(1500)
console.log(2)
}
test()
上一篇:设计模式之迭代器模式
typescript是JavaScript的一个超集,就是说JavaScript的语法typescript全部支持,并且在JavaScript进行了扩充,并在JavaScript的基础上进行了变量、函数、返回值等类型限制。
ABAP 代码中,哪些特殊字符不能用于变量命名?
TypeScript里的interface扩展,多继承以及对应的JavaScript代码
尽管typescript 提供了直接引用外部定义文件的功能(@types),但是很多时候以前的模块以及 公司内部的项目都不好方便的支持typescript 类型特性,以下是一个简单的集成说明
react学习-函数式常用hook
react学习-路由的使用
基于React内部处理,如果我们合成事件绑定一个普通函数,当事件触发,绑定的函数执行,方法中this会是undefined
React学习-组件通信
react学习-类的使用
React学习-Redux
文章
25746
阅读量
3133196
2024-05-28 09:20:06
2024-05-27 09:14:52
2024-05-27 09:14:52
2024-05-27 09:14:52
2024-05-27 09:14:52
2024-05-27 09:14:52
2022-11-14 02:56:39
2023-03-16 07:13:43
2023-03-16 06:47:52
2023-03-16 06:47:52
2023-03-16 06:48:09
2023-04-07 06:40:46