加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
promise.html 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoniu 提交于 2023-07-27 10:23 . 7.27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
// 1. 创建Promise对象(pending-待定状态)
const p = new Promise((resolve, reject) => {
// Promise对象创建地时候,这里的代码都会执行
// setTimeout(()=>{
// reject('请求失败')
// },1000)
resolve('请求成功')
})
console.log(p);
// 获取结果
p.then(result => {
console.log(result);
}).catch(error => {
console.log(error);
})
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化