ts-container-refresh.md 2.7 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 9
>
>  当设置自定义组件时,自定义组件的高度限制在64_vp之内
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#变量的双向绑定)双向绑定变量。 |
T
third  
tianyu 已提交
24 25
| offset | string&nbsp;\|&nbsp;number | 否 | 刷新组件静止时距离父组件顶部的距离。<br/>默认值:16,单位vp |
| friction | number&nbsp;\|&nbsp;string | 否 | 下拉摩擦系数,取值范围为0到100。<br/>默认值:62<br/>-&nbsp;0表示下拉刷新容器不跟随手势下拉而下拉。<br/>-&nbsp;100表示下拉刷新容器紧紧跟随手势下拉而下拉。<br/>-&nbsp;数值越大,下拉刷新容器跟随手势下拉的反应越灵敏。 |
L
limeng 已提交
26
| builder | [CustomBuilder](ts-types.md#custombuilder8)<sup>10</sup> | 否 | 下拉时,自定义刷新样式的组件 |
Y
yaoyuchi 已提交
27 28 29 30 31 32 33 34



## 事件


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

T
third  
tianyu 已提交
38
## RefreshStatus枚举说明
Y
yaoyuchi 已提交
39

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


## 示例

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

  build() {
    Column() {
61
      Refresh({ refreshing: $$this.isRefreshing, offset: 120, friction: 100 }) {
Y
yaoyuchi 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
        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)