获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
应该这样写 try{ wx.showLoading({title: '查询中...', mask:true}) db.collection('xxx').orderBy('aa','desc') .skip(page).limit(rows).get() .then(res => { ......//数据处理 wx.hideLoading() }) }catch(e){ console.error(e) wx.hideLoading() }
如何让所有异步请求完成后再调用wx.hideLoading()?需求,用户点击按钮后查询数据,但是数据是异步请求,查询数目也较多,等待时间较长,所以想要在查询时间通过 wx.showLoading()提示用户,等完成后在通过wx.hideLoading()来关闭窗口,但是因为是异步,所以很多情况是已经wx.hideLoading(),但数据还没加载完成。请问各位大佬如何解决。 db.collection('xxx').orderBy('aa','desc').skip(page).limit(rows).get() then(res => { wx.showLoading({ title: '查询中...', mask:true }) ......//数据处理 wx.hideLoading() })
2023-12-21