我对.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) {
});
应该做同样的事情,但是一个相对于另一个有优势,还是彼此不同?我应该使用哪一个?我可以正确使用它们吗?