iphone下拉刷新
async onPullDownRefresh(){
await this.getCount();
wx.stopPullDownRefresh()
}
getCount是异步请求,当加上这行代码时,iphone会出现页面不回弹,去掉这行代码就正常
async onPullDownRefresh(){
await this.getCount();
wx.stopPullDownRefresh()
}
getCount是异步请求,当加上这行代码时,iphone会出现页面不回弹,去掉这行代码就正常