pages/demo/demo.json
{
"backgroundTextStyle": "dark"// 下拉 loading 的样式,仅支持 dark / light
}
pages/demo/demo.js
//下拉刷新
onPullDownRefresh: function () {
var that = this;
wx.showNavigationBarLoading() //在标题栏中显示加载
//模拟加载
setTimeout(function () {
// complete
wx.hideNavigationBarLoading() //完成停止加载
wx.stopPullDownRefresh() //停止下拉刷新
that .onLoad();
//或者
// wx.reLaunch({
// url: '/pages/demo/demo'
// })
}, 1000);
},
网友评论