【无标题】(完美解决)uni-app 小程序下拉刷新后刷新图标无法正常恢复的问题

uni-app下拉刷新后刷新条无法正常恢复的问题

      • 完美解决方案

完美解决方案

1.pages.json 配置 “enablePullDownRefresh”: true

"pages": [
	{
		"path": "pages/index/index",
		"style": {
			"navigationBarTitleText": "下拉刷新",
			"enablePullDownRefresh": true //下拉刷新配置页面中生效
		}
	}
]

2.index页面中

//下拉刷新-->配合uni.stopPullDownRefresh();
onPullDownRefresh() {
	this.loadData();
}

methods: {
	//loadData 方法中停止 下拉刷新
	loadData(){
		uni.stopPullDownRefresh();
	}
}

你可能感兴趣的:(小程序,前端)