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


在钩子函数中这样写:

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);
  }
}

 打印结果:

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM