1const promise = new Promise((resolve, reject) => { 2 setTimeout(() => { 3 console.log('timer') 4 resolve('success') 5 }, 1000) 6}) 7const start = Date.now(); 8promise.then(res => { 9 console.log(res, Date.now() - start) 10}) 11promise.then(res => { 12 console.log(res, Date.now() - start) 13}) 14
参考答案:
如果执行足够快的话,也可能两个都是1001。
Promise 的 .then 或者 .catch 可以被调用多次,但这里 Promise 构造函数只执行一次。或者说 promise 内部状态一经改变,并且有了一个值,那么后续每次调用 .then 或者 .catch 都会直接拿到该值。
'timer'
'success' 1001
'success' 1002
最近更新时间:2022-01-09