主要區別就是,如果在 then 的第一個函數里拋出了異常,后面的 catch 能捕獲到,而第二個函數捕獲不到
p.then(function () { throw new Error() }, function () { // won't capture this error }) .catch(function () { // will capture the error })
主要區別就是,如果在 then 的第一個函數里拋出了異常,后面的 catch 能捕獲到,而第二個函數捕獲不到
p.then(function () { throw new Error() }, function () { // won't capture this error }) .catch(function () { // will capture the error })
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。