小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序页面下拉刷新后,在IPhone6和IPhone6s上不回弹,而且已经试过在.json文件中设置过"backgroundColor": "#f0f0f0",也在onPullDownRefresh中调用了wx.stopPullDownRefresh(),这两种操作都没有效果,请官方及时解决。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
onPullDownRefresh: function() {
wx.showNavigationBarLoading() //在标题栏中显示加载
wx.showLoading({
title: '加载中'
})
setTimeout(() => {
let obj = this.data.postData
obj.data.pageNum = 0
this.setData({
postData: obj
this.initData()
}, 1000)
},
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
initData() {
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
}
}, () => {
title: '服务器错误,请稍后重试'
我的iphone6s回弹了 但是没有进去函数
这是我的代码,经过实测,真机上还是出现了页面不回弹。
测试有效果,你用错了吧
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
onPullDownRefresh: function() {
wx.showNavigationBarLoading() //在标题栏中显示加载
wx.showLoading({
title: '加载中'
})
setTimeout(() => {
let obj = this.data.postData
obj.data.pageNum = 0
this.setData({
postData: obj
})
this.initData()
}, 1000)
},
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: '服务器错误,请稍后重试'
})
})
},
我的iphone6s回弹了 但是没有进去函数
这是我的代码,经过实测,真机上还是出现了页面不回弹。
测试有效果,你用错了吧