如果宣布这样的承诺:
let myPromise = new Promise((resolve, reject) => {
setTimeout(function(){
resolve("Success!"); // Yay! Everything went well!
}, 250);
});
其次是
myPromise().then(() => { console.log("first then") });
myPromise().then(() => { console.log("second then") });
在myPromise执行之前,是否可以看到听众附加了我的承诺?
我想检查/调试附属于我的承诺的听众,但并不总是清楚听什么。