uniapp下拉刷新
作者:互联网
下拉刷新的开启模式
1、全局开启
这样直接在配置文件pages.json的globalStyle配置属性里设置"enablePullDownRefresh":true
即可开启。不过这样每个页面都开启了下拉刷新了。
2、局部开启
在配置文件pages.json的"pages"属性里每个组件自己的page里开启。
监听下拉事件
onPullDownRefresh
通过页面生命周期的onPullDownRefresh函数即可监听。
<script>
export default {
data() {
return {
hello:"你好世界"
}
},
//监听下拉刷新
onPullDownRefresh() {
setTimeout(()=>{
console.log('监听到下拉刷新了!');
this.hello='hello world';
uni.stopPullDownRefresh();//关闭刷新状态
},2000);
}
}
</script>
关闭刷新和页面里手动开启下拉事件
1、停止刷新
uni.stopPullDownRefresh()
通过这样调用即可停止当前页面下拉刷新。
2、页面里触发下拉刷新。
通过在页面里触发下拉刷新也可以实现局部实现下拉刷新的效果。还不用在pages.json配置文件里配置。
uni.startPullDownRefresh(OBJECT)
开始下拉刷新,调用后触发下拉刷新动画,效果与用户手动下拉刷新一致。
<template>
<view class="content">
<view>
{{hello}}
</view>
<button v-on:click='pullDown'>点我</button>
</view>
</template>
<script>
export default {
data() {
return {
hello:"你好世界"
}
},
methods: {
pullDown(){
uni.startPullDownRefresh();//手动触发刷新
}
},
//监听下拉刷新
onPullDownRefresh() {
setTimeout(()=>{
console.log('监听到下拉刷新了!');
this.hello='hello world';
uni.stopPullDownRefresh();//关闭刷新状态
},2000);
}
}
</script>
标签:uniapp,下拉,开启,hello,刷新,uni,监听,页面 来源: https://www.cnblogs.com/fhzmasl/p/16383542.html