Javascript Promises学习
Promise对象的三个状态
- pending(进行中)
- fulfilled(已成功)
- rejected(已失败)
Promise代表一个异步操作,对象的状态一旦改变,就不会再改变
Promise
构造函数接受一个函数作为参数,该函数的两个参数分别是
resolve和
reject`。它们是两个函数,由 JavaScript 引擎提供,不用自己部署。
Promise
实例生成以后,可以用then
方法分别指定resolved
状态和rejected
状态的回调函数
// 示例
const promise = new Promise(function(resolve,reject){
let i = 1==2
if(i){
console.log("Promise Success")
resolve(i)
}else{
console.log("Promise Failue")
reject(i)
}
}).then(function(value){
console.log("success",value)
},function(error){
console.log("error",error)
})
相关文档:
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise
复制请注明出处,在世界中挣扎的灰太狼