小程序页面下拉刷新后,在IPhone6和IPhone6s上不回弹,而且已经试过在.json文件中设置过"backgroundColor": “#f0f0f0”,也在onPullDownRefresh中调用了wx.stopPullDownRefresh(),这两种操作都没有效果,请官方及时解决。
initData() {
wx.showLoading({
title: ‘加载中’
})
app.ajax(this.data.postData).then((res) => {
wx.hideLoading()
wx.hideNavigationBarLoading() //在标题栏中隐藏加载
wx.stopPullDownRefresh()
if (res.success) {
} else {
this.wetoast.toast({
title: res.errMsg,
duration: 1500
})
}
}, () => {
wx.hideLoading()
this.wetoast.toast({
title: ‘服务器错误,请稍后重试’
})
})
},