ts-basic-components-textarea.md 6.2 KB
Newer Older
Z
zengyawen 已提交
1 2
# TextArea

T
explain  
tianyu 已提交
3 4
可以输入多行文本并支持响应部分输入事件的组件。

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


Z
zengyawen 已提交
9
## 权限列表
Z
zengyawen 已提交
10 11 12



Z
zengyawen 已提交
13 14

## 子组件
Z
zengyawen 已提交
15 16 17



Z
zengyawen 已提交
18 19 20

## 接口

21
TextArea(value?:{placeholder?: string| Resource, text?: string| Resource, controller?: TextAreaController})
Z
zengyawen 已提交
22 23

- 参数
H
HelloCrease 已提交
24 25
  | 参数名                     | 参数类型                                     | 必填   | 默认值  | 参数描述           |
  | ----------------------- | ---------------------------------------- | ---- | ---- | -------------- |
26 27
  | placeholder             | string \| [Resource](../../ui/ts-types.md#resource类型)                                  | 否    | -    | 无输入时的提示文本。     |
  | text             | string \| [Resource](../../ui/ts-types.md#resource类型)                                  | 否    | -    | 设置提示文本的当前值。     |
H
HelloCrease 已提交
28
  | controller<sup>8+</sup> | [TextAreaController](#textareacontroller8) | 否    | -    | 设置TextArea控制器。 |
Z
zengyawen 已提交
29 30 31


## 属性
Z
zengyawen 已提交
32

H
HelloCrease 已提交
33
除支持通用属性外,还支持以下属性:
Z
zengyawen 已提交
34

H
HelloCrease 已提交
35 36 37 38
| 名称                       | 参数类型                                     | 默认值   | 描述                                       |
| ------------------------ | ---------------------------------------- | ----- | ---------------------------------------- |
| placeholderColor         | Color                                    | -     | 设置placeholder文本颜色。                       |
| placeholderFont          | {<br/>size?:&nbsp;number,<br/>weight?:number&nbsp;\|&nbsp;[FontWeight](ts-universal-attributes-text-style.md),<br/>family?:&nbsp;string,<br/>style?:&nbsp;[FontStyle](ts-universal-attributes-text-style.md)<br/>} | -     | 设置placeholder文本样式:<br/>-&nbsp;size:&nbsp;设置文本尺寸,Length为number类型时,使用fp单位。<br/>-&nbsp;weight:&nbsp;设置文本的字体粗细,number类型取值[100,&nbsp;900],取值间隔为100,默认为400,取值越大,字体越粗。<br/>-&nbsp;family:&nbsp;设置文本的字体列表。使用多个字体,使用','进行分割,优先级按顺序生效,例如:'Arial,&nbsp;sans-serif'。<br/>-&nbsp;style:&nbsp;设置文本的字体样式。 |
K
kangchongtao 已提交
39
| textAlign                | [TextAlign](ts-appendix-enums.md#textalign) | Start | 设置文本水平对齐式。                     |
H
HelloCrease 已提交
40 41
| caretColor               | Color                                    | -     | 设置输入框光标颜色。                               |
| inputFilter<sup>8+</sup> | {<br/>value:&nbsp;[ResourceStr](../../ui/ts-types.md)<sup>8+</sup>,<br/>error?:&nbsp;(value:&nbsp;string)<br/>} | -     | 通过正则表达式设置输入过滤器。满足表达式的输入允许显示,不满足的输入被忽略。仅支持单个字符匹配,不支持字符串匹配。例如:^(?=.\*\d)(?=.\*[a-z])(?=.\*[A-Z]).{8,10}$,不支持过滤8到10位的强密码。<br/>-&nbsp;value:设置正则表达式。<br/>-&nbsp;error:正则匹配失败时,返回被忽略的内容。 |
L
luoying_ace_admin 已提交
42
| copyOption<sup>9+</sup> | [CopyOptions](ts-basic-components-text.md) | CopyOptions.CrossDevice | 设置文本是否可复制。 |
Z
zengyawen 已提交
43 44 45 46


## 事件

H
HelloCrease 已提交
47 48 49 50 51 52
| 名称                                       | 功能描述                                     |
| ---------------------------------------- | ---------------------------------------- |
| onChange(callback:&nbsp;(value:&nbsp;string)&nbsp;=&gt;&nbsp;void) | 输入发生变化时,触发回调。                            |
| onCopy<sup>8+</sup>(callback:(value:&nbsp;string)&nbsp;=&gt;&nbsp;void) | 长按输入框内部区域弹出剪贴板后,点击剪切板复制按钮,触发回调。<br/>value:复制的文本内容。 |
| onCut<sup>8+</sup>(callback:(value:&nbsp;string)&nbsp;=&gt;&nbsp;void) | 长按输入框内部区域弹出剪贴板后,点击剪切板剪切按钮,触发回调。<br/>value:剪切的文本内容。 |
| onPaste<sup>8+</sup>(callback:(value:&nbsp;string)&nbsp;=&gt;&nbsp;void) | 长按输入框内部区域弹出剪贴板后,点击剪切板粘贴按钮,触发回调。<br/>value:粘贴的文本内容。 |
Z
zengyawen 已提交
53

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
## TextAreaController<sup>8+</sup>

TextArea组件的控制器,通过它操作TextArea组件。

### 导入对象

```
controller: TextAreaController = new TextAreaController()

```

### caretPosition<sup>8+</sup>

caretPosition(value: number): void

设置输入光标的位置。

- 参数
H
HelloCrease 已提交
72 73 74
  | 参数名   | 参数类型   | 必填   | 默认值  | 参数描述                |
  | ----- | ------ | ---- | ---- | ------------------- |
  | value | number | 是    | -    | 从字符串开始到光标所在位置的字符长度。 |
75

Z
zengyawen 已提交
76 77 78 79 80

## 示例


### 多行文本输入
Z
zengyawen 已提交
81

H
geshi  
HelloCrease 已提交
82 83
```ts
// xxx.ets
Z
zengyawen 已提交
84 85
@Entry
@Component
H
HelloCrease 已提交
86
struct TextAreaExample1 {
T
tianyu 已提交
87
  controller: TextAreaController = new TextAreaController()
Z
zengyawen 已提交
88 89 90
  @State text: string = ''
  build() {
    Column() {
T
tianyu 已提交
91
      TextArea({ placeholder: 'input your word', controller: this.controller})
Z
zengyawen 已提交
92 93 94 95 96 97 98 99 100 101
        .placeholderColor("rgb(0,0,225)")
        .placeholderFont({ size: 30, weight: 100, family: 'cursive', style: FontStyle.Italic })
        .textAlign(TextAlign.Center)
        .caretColor(Color.Blue)
        .height(50)
        .fontSize(30)
        .fontWeight(FontWeight.Bold)
        .fontFamily("sans-serif")
        .fontStyle(FontStyle.Normal)
        .fontColor(Color.Red)
Z
zengyawen 已提交
102 103 104
        .inputFilter('^[\u4E00-\u9FA5A-Za-z0-9_]+$',(value: string) => {
          console.info("hyb"+value)
        })
Z
zengyawen 已提交
105 106
        .onChange((value: string) => {
          this.text = value
T
tianyu 已提交
107
          this.controller.caretPosition(-1)
Z
zengyawen 已提交
108 109 110 111 112 113 114
        })
      Text(this.text).width('90%')
    }
  }
}
```

Z
zengyawen 已提交
115 116 117 118 119
![zh-cn_image_0000001251087311](figures/zh-cn_image_0000001251087311.gif)


### 设置光标

H
geshi  
HelloCrease 已提交
120 121
```ts
// xxx.ets
Z
zengyawen 已提交
122 123
@Entry
@Component
H
HelloCrease 已提交
124
struct TextAreaExample2 {
Z
zengyawen 已提交
125 126 127 128 129 130 131 132 133 134 135 136
    controller: TextAreaController = new TextAreaController()
    build() {
        Column() {
            TextArea({ placeholder: 'input your word',controller:this.controller })
            Button('caretPosition')
                .onClick(() => {
                    this.controller.caretPosition(4)
                })
          }
    }
}
```
Z
zengyawen 已提交
137

Z
zengyawen 已提交
138
![zh-cn_image_0000001252653499](figures/zh-cn_image_0000001252653499.png)