Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

请问Promise 中reject 和 catch 的处理上有什么区别?

$
0
0

如题,请问下面的代码有什么区别呢?我隐约记得在哪里看到过好像是一回事,只是写法上的区别

auto.getData().then(function (results) {
     res.send(results);
}, next);
auto.getData().then(function (results) {
     res.send(results);
}).catch(next);

Viewing all articles
Browse latest Browse all 14821

Trending Articles