const p = new Promise((resolve, reject) => { setTimeout(function () { resolve(3); }, 1000); }); /** * 方法一:在callback 中return new ...
確定! 回上一頁