从变量创建Promise的方法是使用Promise的构造函数。Promise构造函数接受一个函数作为参数,这个函数又接受两个参数resolve和reject,分别表示Promise的状态从pending变为fulfilled(已完成)和从pending变为rejected(已拒绝)时的回调函数。
下面是一个示例代码:
const myVariable = 10;
const myPromise = new Promise((resolve, reject) => {
if (myVariable === 10) {
resolve("变量的值是10");
} else {
reject("变量的值不是10");
}
});
myPromise.then((result) => {
console.log(result); // 输出:变量的值是10
}).catch((error) => {
console.log(error); // 不会执行
});
在上面的代码中,我们首先定义了一个变量myVariable
,然后使用Promise构造函数创建了一个Promise对象myPromise
。在Promise的构造函数中,我们使用条件判断来决定Promise的状态是fulfilled还是rejected。如果myVariable
的值是10,那么调用resolve
函数并传入一个字符串作为参数,表示Promise已完成;否则,调用reject
函数并传入一个字符串作为参数,表示Promise已拒绝。
接下来,我们使用then
方法来注册当Promise状态变为fulfilled时的回调函数,这个回调函数接收一个参数,即resolve
函数传递的值。在示例代码中,我们输出了这个值,即"变量的值是10"。
如果Promise的状态变为rejected,我们可以使用catch
方法来注册回调函数,这个回调函数接收一个参数,即reject
函数传递的值。在示例代码中,由于myVariable
的值是10,所以Promise的状态变为fulfilled,catch
方法中的回调函数不会执行。
这是从变量创建Promise的基本方法,可以根据具体的业务需求和逻辑来扩展和使用Promise。
领取专属 10元无门槛券
手把手带您无忧上云