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

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

H
geshi  
HelloCrease 已提交
5
>  **说明:**
Y
yaoyuchi 已提交
6 7 8 9 10 11 12 13 14 15 16 17
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

## 权限列表



## 子组件

支持单个子组件。

## 接口

18
Refresh\(value: \{ refreshing: boolean, offset?: Length, friction?: number | string \}\)
Y
yaoyuchi 已提交
19 20 21 22 23

- 参数

  | 参数 | 参数名 | 必填 | 默认值 | 参数描述 |
  | -------- | -------- | -------- | -------- | -------- |
W
wangzezhen 已提交
24
  | refreshing | boolean | 是 | - | 当前组件是否正在刷新。<br/>该参数支持[$$](../../ui/ts-syntactic-sugar.md)双向绑定变量。 |
Y
yaoyuchi 已提交
25
  | offset | Length | 否 | 16 | 刷新组件静止时距离父组件顶部的距离。|
26
  | friction | number&nbsp;\|&nbsp;string | 否 | 62 | 下拉摩擦系数,取值范围为0到100。<br/>-&nbsp;0表示下拉刷新容器不跟随手势下拉而下拉。<br/>-&nbsp;100表示下拉刷新容器紧紧跟随手势下拉而下拉。<br/>-&nbsp;数值越大,下拉刷新容器跟随手势下拉的反应越灵敏。 |
Y
yaoyuchi 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50



## 事件


| 名称 | 描述 |
| -------- | -------- |
| onStateChange(callback: (state: RefreshStatus) => void)| 当前刷新状态变更时,触发回调。<br/>state:刷新状态。 |
| onRefreshing(callback: () => void)| 进入刷新状态时触发回调。 |

- RefreshStatus枚举说明

  | 名称 | 描述 |
  | -------- | -------- |
  | Inactive | 默认未下拉状态。 |
  | Drag | 下拉中,下拉距离小于刷新距离。 |
  | OverDrag | 下拉中,下拉距离超过刷新距离。 |
  | Refresh | 下拉结束,回弹至刷新距离,进入刷新状态。 |
  | Done | 刷新结束,返回初始状态(顶部)。 |


## 示例

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)