2020-07-28 10:03:53 +08:00
---
title: Textarea 多行文本输入框
2020-09-15 14:40:51 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
menuName: Textarea 多行文本输入框
2020-09-15 14:40:51 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 57
---
2020-09-15 14:40:51 +08:00
2020-07-28 10:03:53 +08:00
## 基本使用
2021-01-07 23:35:03 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-08-09 18:05:01 +08:00
"api": "/api/mock2/form/saveForm",
2021-06-07 10:09:55 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2020-09-15 14:40:51 +08:00
"name": "textarea",
"type": "textarea",
"label": "多行文本"
}
2020-07-28 10:03:53 +08:00
]
}
```
2022-01-20 18:30:52 +08:00
## 清空输入框
带移除图标的输入框,点击图标删除所有内容。
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "textarea",
"type": "textarea",
"label": "多行文本",
2022-09-26 14:41:57 +08:00
"clearable": true,
"value": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmodtion tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
2022-01-20 18:30:52 +08:00
}
]
}
```
设置`resetValue`,清空输入框后重置为指定值
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "textarea",
"type": "textarea",
"label": "多行文本",
"clearable": true,
"resetValue": "reset"
}
]
}
```
2021-08-24 21:24:54 +08:00
## 显示计数器
2022-09-26 14:41:57 +08:00
配置`"showCounter": true`后输入框将显示计数器,一般会配合`maxLength`属性以限制输入长度,如果不设置`maxLength`,则仅展示计数器,并不会限制用户的输入长度。
2021-08-24 21:24:54 +08:00
```schema: scope="body"
{
"type": "form",
"body": [
{
"name": "a",
"type": "textarea",
"label": "A",
"showCounter": true,
2022-01-20 18:30:52 +08:00
"placeholder": "请输入",
"clearable": true
2021-08-24 21:24:54 +08:00
},
{
"name": "b",
"type": "textarea",
"label": "B",
"showCounter": true,
2022-09-26 14:41:57 +08:00
"maxLength": 30,
2021-08-24 21:24:54 +08:00
"placeholder": "请输入"
}
]
}
```
2020-07-28 10:03:53 +08:00
## 属性表
当做选择器表单项使用时,除了支持 [普通表单项属性表 ](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8 ) 中的配置以外,还支持下面一些配置
2022-01-20 18:30:52 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| ------------ | --------- | ------- | ---------------------------- |
| minRows | `number` | `3` | 最小行数 |
| maxRows | `number` | `20` | 最大行数 |
| trimContents | `boolean` | `true` | 是否去除首尾空白文本 |
| readOnly | `boolean` | `false` | 是否只读 |
| showCounter | `boolean` | `false` | 是否显示计数器 |
| maxLength | `number` | - | 限制最大字数 |
| clearable | `boolean` | `false` | 是否可清除 |
| resetValue | `string` | `""` | 清除后设置此配置项给定的值。 |
2022-03-16 20:50:59 +08:00
## 事件表
2022-10-12 15:09:03 +08:00
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,在`actions`中可以通过`${事件参数名}`来获取事件产生的数据(`< 2.3.2 及以下版本 为 $ { event . data . [ 事件参数名 ] } ` ) , 详细请查看 [ 事件动作 ] ( . . / . . / docs / concepts / event-action ) 。
2022-05-31 15:05:54 +08:00
2022-10-12 15:09:03 +08:00
> `[name]`表示当前组件绑定的名称,即`name`属性,如果没有配置`name`属性,则通过`value`取值。
| 事件名称 | 事件参数 | 说明 |
| -------- | -------------------------- | -------------------- |
| change | `[name]: string` 组件的值 | 值变化时触发 |
| focus | `[name]: string` 组件的值 | 输入框获取焦点时触发 |
| blur | `[name]: string ` 组件的值 | 输入框失去焦点时触发 |
2022-03-16 20:50:59 +08:00
## 动作表
2022-05-31 15:05:54 +08:00
当前组件对外暴露以下特性动作,其他组件可以通过指定`actionType: 动作名称`、`componentId: 该组件id`来触发这些动作,动作配置可以通过`args: {动作配置项名称: xxx}`来配置具体的参数,详细请查看[事件动作](../../docs/concepts/event-action#触发其他组件的动作)。
2022-04-26 21:12:00 +08:00
| 动作名称 | 动作配置 | 说明 |
| -------- | ------------------------ | ------------------------------------------------------ |
| clear | - | 清空 |
| reset | - | 将值重置为`resetValue`,若没有配置`resetValue`,则清空 |
| focus | - | 获取焦点 |
| setValue | `value: string` 更新的值 | 更新数据 |