目录
1.概念
它们都是关键字;
async await配合起来使用就是实现异步操作的同步化;
它们是基于promises的语法糖,使得异步代码更易于编写和阅读;
await 只在 async 函数内有效,在其函数之外使用,会报错滴;
2. 最简单的写法
ps: 在方法中不能直接写this,因为是异步,直接写this ,那么this的指向可能不是我们所要的。必须先给它起个别名,再使用!!!
let tableData=[];
async function temp(){
let _this=this;
let res =await Gerdata();//调接口
_this.tableData=res;
consoloe.log( _this.tableData)
}
扩展:在setTimeout中也同样。