小程序下拉刷新
1.对要下拉刷新的页面进行配置
{
"path": "pages/goods_list/main",
"style": {
"navigationBarTitleText": "商品列表",
"navigationBarBackgroundColor":"#eb4450",
"navigationBarTextStyle":"white",
"enablePullDownRefresh": true
}
},
2.使用下拉监听事件
async onPullDownRefresh() {
this.goods =[]
await this.getPageData()
//第三步手动关闭下拉
uni.stopPullDownRefresh();
}
3 手动关闭下拉(因为小程序不会自动关闭,所以需要我们进行手动)
uni.stopPullDownRefresh();