ts-container-refresh.md 2.9 KB
Newer Older
Y
yaoyuchi 已提交
1 2
# Refresh

T
explain  
tianyu 已提交
3 4
 可以进行页面下拉操作并显示刷新动效的容器组件。 

H
geshi  
HelloCrease 已提交
5
>  **说明:**
T
third  
tianyu 已提交
6 7
>
>  该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
L
limeng 已提交
8
>
L
limeng 已提交
9
>  当设置自定义组件时,自定义组件的高度限制在64vp之内。
Y
yaoyuchi 已提交
10 11 12 13 14 15 16

## 子组件

支持单个子组件。

## 接口

L
limeng 已提交
17
Refresh\(value: \{ refreshing: boolean, offset?:  number | string , friction?: number | string, builder?: Custombuilder\}\)
Y
yaoyuchi 已提交
18

T
third  
tianyu 已提交
19
**参数:**
Y
yaoyuchi 已提交
20

T
third  
tianyu 已提交
21 22
| 参数 | 参数名 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
23
| refreshing | boolean | 是 | 当前组件是否正在刷新。<br/>该参数支持[$$](../../quick-start/arkts-restrictions-and-extensions.md#变量的双向绑定)双向绑定变量。 |
J
jiangdayuan 已提交
24
| offset | string&nbsp;\|&nbsp;number | 否 | 下拉起点距离组件顶部的距离。<br/>默认值:16,单位vp <br/>**说明:**<br/>不支持百分比,不支持负数 |
T
third  
tianyu 已提交
25
| friction | number&nbsp;\|&nbsp;string | 否 | 下拉摩擦系数,取值范围为0到100。<br/>默认值:62<br/>-&nbsp;0表示下拉刷新容器不跟随手势下拉而下拉。<br/>-&nbsp;100表示下拉刷新容器紧紧跟随手势下拉而下拉。<br/>-&nbsp;数值越大,下拉刷新容器跟随手势下拉的反应越灵敏。 |
26
| builder | [CustomBuilder](ts-types.md#custombuilder8)<sup>10+</sup> | 否 | 下拉时,自定义刷新样式的组件。 |
Y
yaoyuchi 已提交
27

Y
yamila 已提交
28
## 属性
Y
yaoyuchi 已提交
29

Y
yamila 已提交
30
支持[通用属性](ts-universal-attributes-size.md)
Y
yaoyuchi 已提交
31 32 33

## 事件

Y
yamila 已提交
34 35
除支持[通用事件](ts-universal-events-click.md)外,还支持以下事件:

Y
yaoyuchi 已提交
36 37 38

| 名称 | 描述 |
| -------- | -------- |
S
sienna1128 已提交
39
| onStateChange(callback: (state: [RefreshStatus](#refreshstatus枚举说明)) => void)| 当前刷新状态变更时,触发回调。<br/>-&nbsp;state:刷新状态。 |
Y
yaoyuchi 已提交
40 41
| onRefreshing(callback: () => void)| 进入刷新状态时触发回调。 |

T
third  
tianyu 已提交
42
## RefreshStatus枚举说明
Y
yaoyuchi 已提交
43

T
third  
tianyu 已提交
44 45 46 47 48 49 50
| 名称 | 描述 |
| -------- | -------- |
| Inactive | 默认未下拉状态。 |
| Drag | 下拉中,下拉距离小于刷新距离。 |
| OverDrag | 下拉中,下拉距离超过刷新距离。 |
| Refresh | 下拉结束,回弹至刷新距离,进入刷新状态。 |
| Done | 刷新结束,返回初始状态(顶部)。 |
Y
yaoyuchi 已提交
51 52 53 54


## 示例

H
geshi  
HelloCrease 已提交
55 56
```ts
// xxx.ets
Y
yaoyuchi 已提交
57 58 59 60 61 62 63 64
@Entry
@Component
struct RefreshExample {
  @State isRefreshing: boolean = false
  @State counter: number = 0

  build() {
    Column() {
65
      Refresh({ refreshing: $$this.isRefreshing, offset: 120, friction: 100 }) {
Y
yaoyuchi 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        Text('Pull Down and refresh: ' + this.counter)
          .fontSize(30)
          .margin(10)
      }
      .onStateChange((refreshStatus: RefreshStatus) => {
        console.info('Refresh onStatueChange state is ' + refreshStatus)
      })
      .onRefreshing(() => {
        setTimeout(() => {
          this.counter++
          this.isRefreshing = false
        }, 1000)
        console.log('onRefreshing test')
      })
    }
  }
}
```

![](figures/refresh.gif)