微信小程序实现下拉刷新
配置json文件
如果需要全局使用下拉刷新就在app.json中设置
如果为单页面使用则在页面json设置即可
"enablePullDownRefresh":true
在js文件中写下拉刷新方法
// 下拉刷新
onPullDownRefresh:function() {
console.log(45634)
var that=this;
// wx.startPullDownRefresh()
that.searchblue()
setTimeout(()=>{
wx.stopPullDownRefresh({
success(res){
console.log(res);
},
fail(err){
console.log(err);
}
}) //停止下拉刷新
},2000)
},
注意
坑点1:
下拉不出现等待点
页面颜色和点颜色相近
可以通过json文件
"backgroundTextStyle":"dark",//深色
来调整
坑点2:
下拉无反应:
1.未配置json文件
2.多写了一个onPullDownRefresh:function(){}函数
(微信自带有该函数)