注意的是刷新在json 文件中要配置 "enablePullDownRefresh":true
空白的出现有可能是多次触发下拉事件导致请求过多导致页面反应延迟。
在 onPullDownRefresh 事件里加setTimeout事件延迟下下拉刷新的事件。
/** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { wx.stopPullDownRefresh(); let _This = this; let oUInfo = _This.data.oUInfo; (!oUInfo.unionId) && getApp().getUserData(function (result) { _This.fGetCUserInfo(result.unionId); _This.setData({ oUInfo: result }); }); setTimeout(function () {// 这里写刷新要调用的函数,比如: _This.pullRefresh(); }, 500); },
注意,setTimeout要写在getApp请求之后,setTimeout只处理刷新后数据的获取。间隔时间建议为500。
转: https://www.cnblogs.com/zhangym118/p/8927022.html
原文地址:https://www.cnblogs.com/fps2tao/p/10248827.html
时间: 2024-10-09 06:18:52