需求:有些页面需要实时更新数据,但是又不能做实时刷新,所以给用户一个手动下拉刷新指定接口的功能
第一步:在pages.json给页面加"enablePullDownRefresh": true配置
第二步:在指定页面写onPullDownRefresh方法,和methods同级
onPullDownRefresh() {
//加个定时器1秒后关闭刷新
setTimeout(() => {
uni.stopPullDownRefresh();
}, 1000);
//下拉刷新重新调用接口
this.getAreaeatil()
},
然后就没有然后了!