amis2/docs/zh-CN/components/form/textarea.md

36 lines
950 B
Markdown
Raw Normal View History

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
## 基本使用
```schema:height="400" scope="body"
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"controls": [
{
2020-09-15 14:40:51 +08:00
"name": "textarea",
"type": "textarea",
"label": "多行文本"
}
2020-07-28 10:03:53 +08:00
]
}
```
## 属性表
当做选择器表单项使用时,除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置
| 属性名 | 类型 | 默认值 | 说明 |
| ------------ | --------- | ------ | ---------------------- |
| minRows | `number` | | 最小行数 |
| maxRows | `number` | | 最大行数 |
| trimContents | `boolean` | | 是否去除首尾空白文本。 |