async a(){
if(){}
else if(){}
else if(){
wx.showModal({
success(res){
if(res.confirm){
await b()
await c()
}
}
})
}
}
b(){}
c(){}
我需要在弹窗按了确认后,执行await操作,请问有什么办法解决这个错误?
async a(){
if(){}
else if(){}
else if(){
wx.showModal({
success(res){
if(res.confirm){
await b()
await c()
}
}
})
}
}
b(){}
c(){}
我需要在弹窗按了确认后,执行await操作,请问有什么办法解决这个错误?