<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Promise</title>
</head>
<body>
<script>
/**
* 构造函数 Promise
* 一个非常牛逼闪电的东西!
*/
let promise = new Promise( (resolve,reject) => {
resolve(); // 调用此方法时后边后执行.then方法
// reject(); // 调用此方法时后边执行.catch方法
});
console.log(promise);
promise
.then (() => console.log("成功,没有任何问题!"))
.then (() => console.log("成功,可以无限调用then方法!"))
.catch (() => console.log("oh 出现了重大问题!"))
</script>
</body>
</html>
es6 promise
最新推荐文章于 2022-05-20 10:03:17 发布