1const promise = Promise.resolve().then(() => { 2 return promise; 3}) 4promise.catch(console.err)
参考答案:
.then 或 .catch 返回的值不能是 promise 本身,否则会造成死循环,因此结果会报错。
Uncaught (in promise) TypeError: Chaining cycle detected for promise #<Promise>
最近更新时间:2022-01-09