1. await 只能在 async中使用
    2. async函数返回的是一个promise对象 返回值看其是否存在
    3. await 后面最好是接Promise 虽然其他值也能达到排队的效果
    4. async/await作用是以同步的方式 执行异步操作