async和await
async/await
是最直接的同步写法
用法
使用
await
,函数必须用
async
标识
await
后面跟的是一个
Promise
实例
需要
babel-polyfill