一、概览:
async:函数
await:操作符

await必须在async函数中才能使用
await后面可以是任意值,但是一般跟Promise对象
1、Promise的resolve方法的值就是await值
2、Promise的reject不会作为值返回,需要使用try-catch捕获