.then vs async等待哪个更好

时间:2019-10-14 03:46:56

标签: promise async-await

我对.then和async await有疑问

据我了解

try {
  const result = await rp( options );
} catch (error) {
}
//do something wih result

rp ( options )
  .then ( function ( result ) {
    //do something with result
 }) .catch ( function (error) {
});

应该做同样的事情,但是一个相对于另一个有优势,还是彼此不同?我应该使用哪一个?我可以正确使用它们吗?

0 个答案:

没有答案