码迷,mamicode.com
首页 > 其他好文 > 详细

async + await 异步

时间:2020-05-19 14:31:10      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:this   bbb   family   http   else   and   try   catch   exce   

先执行A在执行B再执行.then里面的
AAA() {
XXXXX一堆代码
this.BBB().then(()=>{
其他代码
})
},

async BBB(){
let res = await this.$http({
url:,
data:{

},
})
try{
    //执行代码
if (res.body.ifJoinedFamily == ‘0‘) {


} else{

}
}catch(e){
//TODO handle the exception
}
},

async + await 异步

标签:this   bbb   family   http   else   and   try   catch   exce   

原文地址:https://www.cnblogs.com/youngMan-MrS/p/12916528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!