amis2/docs/zh-CN/components/form/input-text.md

346 lines
11 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
2021-06-03 22:09:30 +08:00
title: InputText 输入框
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
2021-06-03 22:09:30 +08:00
menuName: InputText 输入框
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 56
---
## 基本使用
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-03 22:09:30 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
"name": "text",
2021-06-03 22:09:30 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text"
}
]
}
```
## 不同类型
配置`type`可以支持不同格式的文本输入框
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-03 22:09:30 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
"name": "text",
2021-06-03 22:09:30 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text"
},
{
"type": "divider"
},
{
2021-06-03 22:09:30 +08:00
"type": "input-url",
2020-07-28 10:03:53 +08:00
"name": "url",
"label": "链接"
},
{
"type": "divider"
},
{
2021-06-03 22:09:30 +08:00
"type": "input-email",
2020-07-28 10:03:53 +08:00
"name": "email",
"label": "邮箱"
},
{
"type": "divider"
},
{
2021-06-03 22:09:30 +08:00
"type": "input-password",
2020-07-28 10:03:53 +08:00
"name": "password",
"label": "密码"
}
]
}
```
## 附加组件
可以配置`addOn`,附带附加组件,比如 button还能设置 icon。
2020-07-28 10:03:53 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-03 22:09:30 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
"name": "text",
2021-06-03 22:09:30 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text",
"addOn": {
"type": "button",
"icon": "https://suda.cdn.bcebos.com/images%2F2021-01%2Fsearch.svg",
2020-07-28 10:03:53 +08:00
"label": "搜索"
}
}
]
}
```
2021-03-19 09:40:59 +08:00
## 可清除
通过 `"clearable": true` 可以设置文本可清除
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-03 22:09:30 +08:00
"body": [
2021-03-19 09:40:59 +08:00
{
"name": "text",
2021-06-03 22:09:30 +08:00
"type": "input-text",
2021-03-19 09:40:59 +08:00
"label": "text",
2021-03-26 16:11:09 +08:00
"clearable": true
2021-03-19 09:40:59 +08:00
}
]
}
```
2020-07-28 10:03:53 +08:00
## 选择器模式
配置`options`即可支持选择器模式。
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-03 22:09:30 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
"name": "text",
2021-06-03 22:09:30 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text",
"options": [
{
"label": "aa",
"value": "aa"
},
{
"label": "bb",
"value": "bb"
},
{
"label": "cc",
"value": "cc"
},
{
"label": "dd",
"value": "dd"
}
]
}
]
}
```
选择器模式下支持部分选择器组件支持的配置项具体请查看下面的属性表。如source 和 autoComplete 都支持
## 限制只能选择预设
配置 options 并且配置 creatable: false
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "text",
"type": "input-text",
"label": "text",
"creatable": false,
2020-07-28 10:03:53 +08:00
"options": [
{
"label": "OptionA",
"value": "a"
},
{
"label": "OptionB",
"value": "b"
},
{
"label": "OptionC",
"value": "c"
},
{
"label": "OptionD",
"value": "d"
}
]
}
]
}
```
## 多选模式
配置 multiple: true
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "text",
"type": "input-text",
"label": "text",
"multiple": true,
"options": [
{
"label": "OptionA",
"value": "a"
},
{
"label": "OptionB",
"value": "b"
},
{
"label": "OptionC",
"value": "c"
},
{
"label": "OptionD",
"value": "d"
}
]
}
]
}
```
2020-07-28 10:03:53 +08:00
## 前缀和后缀
```schema: scope="body"
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"data": {
"unit": "MB"
},
"body": [
{
"name": "text",
"type": "input-text",
"label": "text",
"prefix": "¥",
"suffix": "RMB"
},
{
"name": "prefix",
"type": "input-text",
"label": "text",
"prefix": "¥"
},
{
"name": "suffix",
"type": "input-text",
"label": "text",
"suffix": "${unit}"
}
]
}
```
支持数据映射
## 显示计数器
```schema: scope="body"
{
"type": "form",
"body": [
{
"name": "a",
"type": "input-text",
"label": "A",
"showCounter": true,
"placeholder": "请输入"
},
{
"name": "b",
"type": "input-text",
"label": "B",
"showCounter": true,
"maxLength": 100,
"placeholder": "请输入"
}
]
}
```
## 自动转换值
可以配置 transform来自动转换值支持转小写或大写。
```schema: scope="body"
{
"type": "form",
"body": [
{
"name": "a",
"type": "input-text",
"label": "A",
"placeholder": "输入的英文自动转为小写",
"transform": {
"lowerCase": true
}
},
{
"name": "b",
"type": "input-text",
"label": "B",
"placeholder": "输入的英文自动转为大写",
"transform": {
"upperCase": true
}
}
]
}
```
2020-07-28 10:03:53 +08:00
## 属性表
当做选择器表单项使用时,除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置
| 属性名 | 类型 | 默认值 | 说明 |
| -------------- | ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------- |
| options | `Array<object>`或`Array<string>` | | [选项组](./options#%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options) |
| source | `string`或 [API](../../../docs/types/api) | | [动态选项组](./options#%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source) |
| autoComplete | `string`或 [API](../../../docs/types/api) | | [自动补全](./options#%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete) |
| multiple | `boolean` | | [是否多选](./options#%E5%A4%9A%E9%80%89-multiple) |
| delimeter | `string` | `,` | [拼接符](./options#%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter) |
| labelField | `string` | `"label"` | [选项标签字段](./options#%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield) |
| valueField | `string` | `"value"` | [选项值字段](./options#%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield) |
| joinValues | `boolean` | `true` | [拼接值](./options#%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues) |
| extractValue | `boolean` | `false` | [提取值](./options#%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue) |
| addOn | `addOn` | | 输入框附加组件,比如附带一个提示文字,或者附带一个提交按钮。 |
| addOn.type | `string` | | 请选择 `text` 、`button` 或者 `submit`。 |
| addOn.label | `string` | | 文字说明 |
| addOn.position | `'left' \| 'right'` | `'right'` | addOn 位置 |
| addOn.xxx | `string` | | 其他参数请参考按钮文档 |
| trimContents | `boolean` | | 是否去除首尾空白文本。 |
| creatable | `boolean` | | 是否可以创建,默认为可以,除非设置为 false 即只能选择选项中的值 |
| clearable | `boolean` | | 是否可清除 |
| resetValue | `string` | `""` | 清除后设置此配置项给定的值。 |
| prefix | `string` | `""` | 前缀 |
| suffix | `string` | `""` | 后缀 |
| showCounter | `boolean` | | 是否显示计数器 |
| minLength | `number` | | 限制最小字数 |
| maxLength | `number` | | 限制最大字数 |
| transform | `object` | | 自动转换值,可选 `transform: { lowerCase: true, upperCase: true }` |