ts-methods-textpicker-dialog.md 2.4 KB
Newer Older
1 2
# 文本滑动选择器弹窗

3 4
根据指定的选择范围创建文本选择器,展示在弹窗上。

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


## 权限列表



## TextPickerDialog.show

K
kukixi 已提交
15
show(options: TextPickerDialogOptions)
16 17 18

定义文本滑动选择器弹窗并弹出。

K
kukixi 已提交
19
- TextPickerDialogOptions参数
20 21 22
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
  | -------- | -------- | -------- | -------- | -------- |
  | range | string[] | 是 | - | 选择器的数据选择范围。 |
K
kangchongtao 已提交
23
  | selected | number | 否 | 0 | 选中项在数组中的index值。 |
24
  | value       | string           | 否    | -    | 选中项文本值。当设置了selected参数时,该值不生效。如果该值不在range范围内,则默认取range第一个元素。|
L
luoying_ace_admin 已提交
25
  | defaultPickerItemHeight | number \| string | 否 | - | 默认Picker内容项元素高度。 |
26 27 28 29 30 31 32 33 34 35 36 37
  | onAccept | (value: TextPickerResult) => void | 否 | - | 点击弹窗中确定按钮时触发。 |
  | onCancel | () => void | 否 | - | 点击弹窗中取消按钮时触发。 |
  | onChange | (value: TextPickerResult) => void | 否 | - | 滑动选择器,当前选择项改变时触发。 |

- TextPickerResult对象说明
  | 名称 | 参数类型 | 描述 | 
  | -------- | -------- | -------- |
  | value | string | 选中项文本。 | 
  | index | number | 选中项在数组中的index值。 | 

## 示例

H
geshi  
HelloCrease 已提交
38 39
```ts
// xxx.ets
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
@Entry
@Component
struct TextPickerDialogExample {
  @State select: number = 1
  private fruits: string[] = ['apple1', 'orange2', 'peach3', 'grape4']

  build() {
    Flex({direction: FlexDirection.Column, alignItems: ItemAlign.Center,
      justifyContent: FlexAlign.Center }) {
      Button("TextPickerDialog").onClick(() => {
        TextPickerDialog.show({
          range: this.fruits,
          selected: this.select,
          onAccept: (value: TextPickerResult) => {
            console.info("TextPickerDialog:onAccept()" + JSON.stringify(value))
            this.select = value.index
          },
          onCancel: () => {
            console.info("TextPickerDialog:onCancel()")
          },
          onChange: (value: TextPickerResult) => {
            console.info("TextPickerDialog:onChange()" + JSON.stringify(value))
          }
        })
      })
    }
  }
}
```