已经在xxxx.json中设置了:
{
"enablePullDownRefresh": true
}
xxxx.js中写了相应刷新:
onPullDownRefresh:function(){
wx.stopPullDownRefresh();
this.onLoad()
}
刷新还是不行执行,发现页面中存在scroll-view,换成view后解决
如果涉及到上拉加载,可以使用
onReachBottom: function() {
var that = this
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
},
网友评论