一、设置微信小程序所有页面都可以下拉刷新 1、在app.json的"window"中进行配置
(1)把"backgroundTextStyle":“light"改为"backgroundTextStyle”:“dark”
(2)添加"enablePullDownRefresh":true,开启下拉刷新。
1.在app.js中增加两个生命周期函数
onPullDownRefresh:function(){
this.onRefresh();
},
onRefresh:function(){
//导航条加载动画
wx.showNavigationBarLoading();
setTimeout(function () {
wx.hideNavigationBarLoading();
//停止下拉刷新
wx.stopPullDownRefresh();
}, 2000);
},
二、设置微信小程序单独页面下拉刷新
1、首先在页面的json文件中添加设置:
“enablePullDownRefresh”: true
{
"usingComponents": {},
"enablePullDownRefresh": true
}
2、在js文件中写一个onRefresh()生命周期:文章来源:https://www.toymoban.com/news/detail-640105.html
onRefresh:function(){
//导航条加载动画
wx.showNavigationBarLoading()
//loading 提示框
wx.showLoading({
title: 'Loading...',
})
console.log("下拉刷新啦");
setTimeout(function () {
wx.hideLoading();
wx.hideNavigationBarLoading();
//停止下拉刷新
wx.stopPullDownRefresh();
}, 2000)
},
3、在onPullDownRefresh()中调用上面写的函数:文章来源地址https://www.toymoban.com/news/detail-640105.html
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh:function(){
this.onRefresh();
},
到了这里,关于微信小程序实现下拉刷新的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!