- refresh
- 子组件
- 属性
- 事件
refresh
app端nvue专用组件。
<refresh> 为容器提供下拉刷新功能。
注意
<refresh>是<scroll-view>、<list>、<waterfall>的子组件,只能在被它们包含时才能被正确渲染。
<scroll-view><refresh><text>Refreshing...</text></refresh><div v-for="num in lists"><text>{{num}}</text></div></scroll-view>
子组件
- 诸如
<text>、<image>之类的任何组件,都可以放到<loading>进行渲染。 - 特殊子组件
<loading-indicator>: 只能作为<refresh>和<loading>的子组件使用,拥有默认的动画效果实现。
<refresh><text>Refreshing</text><loading-indicator></loading-indicator></refresh>
属性
display控制 <refresh> 组件显示、隐藏。display 的设置必须成对出现,即设置 display="show", 必须有对应的 display="hide"。可选值为 show / hide,默认值为 show。
事件
- refresh 事件:当
<scroll-view>、<list>、<waterfall>被下拉完成时触发。 - pullingdown 事件:当
<scroll-view>、<list>、<waterfall>被下拉时触发。 可以从event参数对象中获取以下数据:dy: 前后两次回调滑动距离的差值pullingDistance: 下拉的距离viewHeight: refresh 组件高度type: “pullingdown” 常数字符串
<refresh @refresh="onrefresh" @pullingdown="onpullingdown" :display="refreshing ? 'show' : 'hide'"><text>Refreshing ...</text><loading-indicator></loading-indicator></refresh>
发现错误?想参与编辑?在 GitHub 上编辑此页面!
