ts-container-refresh.md 2.4 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开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Y
yaoyuchi 已提交
8 9 10 11 12 13 14

## 子组件

支持单个子组件。

## 接口

T
third  
tianyu 已提交
15
Refresh\(value: \{ refreshing: boolean, offset?:  number | string , friction?: number | string \}\)
Y
yaoyuchi 已提交
16

T
third  
tianyu 已提交
17
**参数:**
Y
yaoyuchi 已提交
18

T
third  
tianyu 已提交
19 20 21 22 23
| 参数 | 参数名 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
| refreshing | boolean | 是 | 当前组件是否正在刷新。<br/>该参数支持[$$](../../ui/ts-syntactic-sugar.md)双向绑定变量。 |
| 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;数值越大,下拉刷新容器跟随手势下拉的反应越灵敏。 |
Y
yaoyuchi 已提交
24 25 26 27 28 29 30 31



## 事件


| 名称 | 描述 |
| -------- | -------- |
T
third  
tianyu 已提交
32
| onStateChange(callback: (state: RefreshStatus) => void)| 当前刷新状态变更时,触发回调。<br/>-&nbsp;state:刷新状态。 |
Y
yaoyuchi 已提交
33 34
| onRefreshing(callback: () => void)| 进入刷新状态时触发回调。 |

T
third  
tianyu 已提交
35
## RefreshStatus枚举说明
Y
yaoyuchi 已提交
36

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


## 示例

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

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