在钩子函数中这样写:

mounted: function() {
  (async function(){
    console.log(1)
    var a = await that.testFunc1()
    console.log(a)
    console.log(3)
  })();
},
methods: {
  testFunc1: function() {
    return new Promise((resolve, reject)=>{
      this.testFunc2("","",res=>{
        resolve(res);
      });
    });
  },
  testFunc2: function(url,params,callback) {
    setTimeout(()=>{
      callback(2);
    },1000);
  }
}

 打印结果:

vue项目中async、await+promise来将异步转为同步

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
  • 2022-12-23
  • 2021-07-20
  • 2021-10-29
  • 2021-07-20
猜你喜欢
  • 2022-02-15
  • 2021-04-20
  • 2021-10-23
  • 2022-01-08
  • 2022-12-23
  • 2021-06-17
  • 2021-12-28
相关资源
相似解决方案