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

1028 lines
25 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: FormItem 普通表单项
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
menuName: Formula 表单项通用
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 1
---
2020-07-29 16:20:21 +08:00
2020-07-28 10:03:53 +08:00
**表单项** 是组成一个表单的基本单位,它具有的一些特性会帮助我们更好地实现表单操作。
> 所有派生自`FormItem`的组件,都具有`FormItem`的特性。
## 基本用法
最基本的表单项配置像这样:
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本框",
"name": "text"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-password",
"label": "<a href='./password'>密码</a>",
"name": "password"
2020-07-28 10:03:53 +08:00
}
]
}
```
2020-07-29 16:20:21 +08:00
- `name`: **必填属性**,标识表单数据域中,当前表单项值的`key`,这个 name 可以是深层结构,比如 `aa.bb`
2020-07-28 10:03:53 +08:00
- `type`: **必填属性**,标识表单项类型
- `label`: 标识表单项的标签
> 所有表单项都只可以配置在`form`组件中,即`form`的`body`属性中。
2020-07-28 10:03:53 +08:00
## 表单项展示
### 内联模式
2020-10-30 17:58:23 +08:00
通过配置`"mode": "inline"`,标识当前表单项使用内联模式。
2020-07-28 10:03:53 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "常规",
"name": "text1"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "内联",
"name": "text2",
"mode": "inline"
},
{
"type": "input-text",
"label": "内联2",
"name": "text2",
"mode": "inline"
},
{
"type": "group",
"mode": "inline",
"body": [
{
"type": "input-text",
"label": "内联3",
"name": "text2"
},
{
"type": "input-text",
"label": "内联4",
"name": "text2"
}
]
2020-07-28 10:03:53 +08:00
}
]
}
```
### 表单项尺寸
可以配置`size`,来调整表单项的尺寸,支持`'xs' | 'sm' | 'md' | 'lg' | 'full'`,如下:
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "极小",
"name": "text-xs",
"size": "xs"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "小",
"name": "text-sm",
"size": "sm"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "中",
"name": "text-md",
"size": "md"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "大",
"name": "text-lg",
"size": "lg"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "占满",
"name": "text-lg",
"size": "full"
}
]
}
```
> 不同组件的`size`效果可能会有所不同,具体请参考对应的组件文档。
### 表单项标签
设置`label`属性来配置表单项标签。
当表单为水平布局时,左边即便是不设置`label`为了保持对齐也会留空,如果想要去掉空白,请设置成`false`。
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"mode": "horizontal",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "常规",
"name": "text1",
"placeholder": "常规标签"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "",
"name": "text1",
"placeholder": "不显示标签"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": false,
"name": "text1",
"placeholder": "不显示标签且清除空间"
}
]
}
```
2020-08-06 16:08:59 +08:00
### 表单项标签提示
配置`labelRemark`可以实现标签描述提示
```schema: scope="body"
2020-08-06 16:08:59 +08:00
{
"type": "form",
"mode": "horizontal",
2021-06-04 10:27:19 +08:00
"body": [
2020-08-06 16:08:59 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-08-06 16:08:59 +08:00
"label": "无标签提示",
"name": "text1"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-08-06 16:08:59 +08:00
"label": "有标签提示",
"labelRemark": "这是一段提示",
"name": "text2"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
"label": "更复杂的标签提示",
"labelRemark": {
"type": "remark", "title": "提示", "content": "<pre>first \nsecond\n${text1}</pre>"
},
"name": "text3"
2020-08-06 16:08:59 +08:00
}
]
}
```
其它配置请参考 [Remark](../remark)。
2020-07-28 10:03:53 +08:00
### 配置禁用
##### 静态配置
通过配置`"disabled": true`来禁用表单项
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "常规",
"name": "text1"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "禁用",
"name": "text2",
"disabled": true
}
]
}
```
##### 通过条件配置是否禁用
你也通过[表达式](../../../docs/concepts/expression)配置`disabledOn`,来实现在某个条件下禁用当前表单项.
2020-07-28 10:03:53 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-number",
2020-07-28 10:03:53 +08:00
"label": "数量",
"name": "number",
"value": 0,
"description": "调整数量大小查看效果吧!"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"disabledOn": "this.number > 1",
2020-07-28 10:03:53 +08:00
"description": "当数量大于1的时候该文本框会被禁用"
}
]
}
```
### 配置显隐
##### 静态配置
通过配置`"hidden": true`或者`"visible": false`来禁用表单项
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "常规",
"name": "text1"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "隐藏",
"name": "text2",
"hidden": true
}
]
}
```
上例中的`text2`被隐藏了。
##### 通过条件配置显隐
你也通过[表达式](../../../docs/concepts/expression)配置`hiddenOn`,来实现在某个条件下禁用当前表单项.
2020-07-28 10:03:53 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-number",
2020-07-28 10:03:53 +08:00
"label": "数量",
"name": "number",
"value": 0,
"description": "调整数量大小查看效果吧!"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"hiddenOn": "this.number > 1",
2020-07-28 10:03:53 +08:00
"description": "当数量大于1的时候该文本框会隐藏"
}
]
}
```
> `visible`和`hidden``visibleOn`和`hiddenOn`除了判断逻辑相反以外,没有任何区别
## 表单项值
表单项值,即表单项通过用户交互发生变化后,更新表单数据域中同`name`变量值.
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"debug": true,
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "姓名",
"name": "name"
}
]
}
```
如上例,更改姓名表单项值,可以改变表单数据域中`name`变量的值。
2020-08-03 16:06:22 +08:00
也支持链式配置 `name`属性,例如:`aaa.bbb`
```schema: scope="body"
2020-08-03 16:06:22 +08:00
{
"type": "form",
"debug": true,
2021-06-04 10:27:19 +08:00
"body": [
2020-08-03 16:06:22 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-08-03 16:06:22 +08:00
"label": "姓名",
"name": "person.name"
}
]
}
```
观察上例,这样更改表单项值,会改变数据域中`person.name`的值
```json
{
"person": {
"name": "xxx"
}
}
```
2020-07-28 10:03:53 +08:00
## 配置默认值
通过配置`value`属性,可以设置表单项的默认值。
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text",
"name": "text",
"value": "hello world!",
"description": "拥有默认值的 text"
}
]
}
```
`value`不支持数据映射,也就是说不可以直接配置类似于这样的语法:`${xxx}`,如果想要映射当前数据域中的某个变量,那么设置该表单项`name`为该变量名就行,如下:
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"data":{
"text": "hello world!"
},
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "text",
"name": "text",
"description": "拥有默认值的 text"
}
]
}
```
上例中我们表单数据域中有变量`"text": "hello world!"`,然后我们设置表达项`"name": "text"`,这样就可以自动映射值了。
## 隐藏时删除表单项值
默认情况下,在通过 `hiddenOn``visibleOn` 配置显隐交互时,被隐藏的表单项值,不会在当前表单数据域中删除,例如:
```schema: scope="body"
{
"type": "form",
"debug":"true",
2021-06-04 10:27:19 +08:00
"body": [
{
2021-06-04 10:27:19 +08:00
"type": "input-number",
"label": "数量",
"name": "number",
"value": 0,
"description": "调整数量大小查看效果吧!"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
"label": "文本",
"value":"这是一段文本",
"name": "text",
"hiddenOn": "this.number > 1",
"description": "当数量大于1的时候该文本框会隐藏"
}
]
}
```
观察上例,在调整 `number` 数量大于 1 时,`文本` 表单项会隐藏,但是对应的表单数据域中的 `text` 变量值仍存在。
如果想要实现隐藏表单项后,在当前表单数据域中删除该表单项对应的值,那么可以在当前表单项上配置 `"clearValueOnHidden": true`
```schema: scope="body"
{
"type": "form",
"debug":"true",
2021-06-04 10:27:19 +08:00
"body": [
{
2021-06-04 10:27:19 +08:00
"type": "input-number",
"label": "数量",
"name": "number",
"value": 0,
"description": "调整数量大小查看效果吧!"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
"label": "文本",
"value":"这是一段文本",
"name": "text",
"hiddenOn": "this.number > 1",
"description": "当数量大于1的时候该文本框会隐藏",
"clearValueOnHidden": true
}
]
}
```
再次观察上例,当 `文本` 表单项隐藏时,对应的 `text` 变量也会被删除掉。
> 注意: 如果有其他同 name 的表达项的存在,即使其他表单项值没有隐藏,也会在数据域中删掉该值。
2020-07-28 10:03:53 +08:00
## 表单项必填
### 静态配置
通过配置`"required": true`来标识该表单项为必填。
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "常规",
"name": "text",
"required": true
}
]
}
```
### 满足条件校验必填
你也通过[表达式](../../../docs/concepts/expression)配置`requiredOn`,来实现在某个条件下使当前表单项必填。
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-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-number",
2020-07-28 10:03:53 +08:00
"label": "数量",
"name": "number",
"value": 0,
"description": "调整数量大小查看效果吧!"
},
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"requiredOn": "this.number > 1",
2020-07-28 10:03:53 +08:00
"description": "当数量大于1的时候该文本框为必填"
}
]
}
```
## 格式校验
可以配置`validations`属性,指定校验当前表单项值的格式
可以通过对象形式配置
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": {
"isNumeric": true
},
"description": "请输入数字类型文本"
}
]
}
```
同样也可以配置多个格式校验
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": {
"isNumeric": true,
"minimum": 10
},
"description": "请输入数字类型文本"
}
]
}
```
### 字符串形式(不推荐)
也可以配置字符串形式来指定,如下例,输入不合法的值,点击提交会报错并显示报错信息
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": "isNumeric",
"description": "请输入数字类型文本"
}
]
}
```
也可以指定多个格式校验,中间用`逗号`分隔。
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": "isNumeric,minimum:10",
"description": "请输入数字类型文本"
}
]
}
```
如果需要配置参数,例如显示最大值或最小值,则在格式标识符后`:`和参数
### 自定义校验信息
amis 会有默认的报错信息,如果你想自定义校验信息,配置`validationErrors`属性
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": {
"isNumeric": true
},
"validationErrors": {
"isNumeric": "同学,请输入数字哈"
},
"description": "请输入数字类型文本"
}
]
}
```
如果需要获取当前格式校验配置的参数,可以使用`$1`
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
"api": "/api/mock2/form/saveForm",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "文本",
"name": "text",
"validations": {
"isNumeric": true,
"minimum": 10
},
"validationErrors": {
"minimum": "同学,最少输入$1以上的数字哈"
},
"description": "请输入数字类型文本"
}
]
}
```
2021-07-28 19:08:59 +08:00
默认的校验信息如下,可以直接配置文字,也可用多语言中的 key。参考https://github.com/baidu/amis/blob/master/src/locale/zh-CN.ts#L175-L201
```js
{
isEmail: 'validate.isEmail',
isRequired: 'validate.isRequired',
isUrl: 'validate.isUrl',
isInt: 'validate.isInt',
isAlpha: 'validate.isAlpha',
isNumeric: 'validate.isNumeric',
isAlphanumeric: 'validate.isAlphanumeric',
isFloat: 'validate.isFloat',
isWords: 'validate.isWords',
isUrlPath: 'validate.isUrlPath',
matchRegexp: 'validate.matchRegexp',
minLength: 'validate.minLength',
maxLength: 'validate.maxLength',
maximum: 'validate.maximum',
lt: 'validate.lt',
minimum: 'validate.minimum',
gt: 'validate.gt',
isJson: 'validate.isJson',
isLength: 'validate.isLength',
notEmptyString: 'validate.notEmptyString',
equalsField: 'validate.equalsField',
equals: 'validate.equals',
isPhoneNumber: 'validate.isPhoneNumber',
isTelNumber: 'validate.isTelNumber',
isZipcode: 'validate.isZipcode',
isId: 'validate.isId'
}
```
2020-07-28 10:03:53 +08:00
### 表单项值发生变化即校验
默认校验是当进行行为操作时,对表单项进行校验,如果你想每次表单项的值发生变化的时候就校验,请配置`"validateOnChange": true`
2020-07-28 10:03:53 +08:00
### 支持的格式校验
2020-09-01 10:42:59 +08:00
- `isEmail` 必须是 Email。
- `isUrl` 必须是 Url。
- `isNumeric` 必须是 数值。
- `isAlpha` 必须是 字母。
- `isAlphanumeric` 必须是 字母或者数字。
- `isInt` 必须是 整形。
- `isFloat` 必须是 浮点形。
- `isLength:length` 是否长度正好等于设定值。
- `minLength:length` 最小长度。
- `maxLength:length` 最大长度。
- `maximum:number` 最大值。
- `minimum:number` 最小值。
- `equals:xxx` 当前值必须完全等于 xxx。
- `equalsField:xxx` 当前值必须与 xxx 变量值一致。
- `isJson` 是否是合法的 Json 字符串。
- `isUrlPath` 是 url 路径。
2021-06-02 11:07:54 +08:00
- `isPhoneNumber` 是否为合法的手机号码
- `isTelNumber` 是否为合法的电话号码
- `isZipcode` 是否为邮编号码
- `isId` 是否为身份证号码,没做校验
2020-09-01 10:42:59 +08:00
- `matchRegexp:/foo/` 必须命中某个正则。
- `matchRegexp1:/foo/` 必须命中某个正则。
- `matchRegexp2:/foo/` 必须命中某个正则。
- `matchRegexp3:/foo/` 必须命中某个正则。
- `matchRegexp4:/foo/` 必须命中某个正则。
2020-07-28 10:03:53 +08:00
#### 验证只允许 http 协议的 url 地址
> 1.4.0 及以上版本
isUrl 可以配置如下参数
- schemes 协议,默认是为: `['http', 'https', 'ftp', 'sftp']`
- allowLocal 是否允许填写本地地址
- allowDataUrl 是否允许 dataUrl
```schema: scope="body"
{
"type": "form",
"body": [
{
"name": "url",
"type": "input-text",
"label": "只允许 https 打头的 url",
"validations": {
"isUrl": {
"schemes": ["https"]
}
}
}
]
}
```
2021-01-11 12:00:41 +08:00
### 自定义校验函数
2021-03-06 11:15:55 +08:00
可以自己写代码扩展表单验证,请参考 [这里](../../docs/extend/addon#扩展表单验证)
2021-01-11 12:00:41 +08:00
2020-07-28 10:03:53 +08:00
## 服务端校验
### 通过表单提交接口
也可以通过表单提交接口返回错误信息,实现服务端校验
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/saveFormFailed?waitSeconds=1",
2021-06-04 10:27:19 +08:00
"body": [
2020-07-28 10:03:53 +08:00
{
"name": "test2",
2021-06-04 10:27:19 +08:00
"type": "input-text",
2020-07-28 10:03:53 +08:00
"label": "服务端验证"
}
]
}
```
2020-07-29 16:20:21 +08:00
点击提交api 接口返回中,需要在 errors 变量中,返回某个表单项的报错信息,`key`值为该表单项的`name`值。
2020-07-28 10:03:53 +08:00
如上,接口返回的格式如下,提交后,`test2`表达项会显示报错信息
```json
{
"status": 422, // 返回非0状态码
"msg": "",
"errors": {
"test2": "服务器端说,这个有错误。"
},
"data": null
}
```
#### Combo 校验
Combo 类型的表单项,要实现服务端校验,可以使用 `路径key` 来定位要显示报错信息的表单项,例如 `a[0].b` 定位到 a combo 的第一项中 b 表单项。
例如有如下表单,点击提交,查看效果:
```schema:scope="body"
{
"type": "form",
"debug": true,
"mode": "horizontal",
"api": "/api/mock2/form/saveFormFailedCombo?waitSeconds=1",
2021-06-04 10:27:19 +08:00
"body": [
{
"type": "combo",
"name": "combo1",
"label": "组合多条单行",
"multiple": true,
"value": [
{
"a": "a1",
"b": "a"
},
{
"a": "a2",
"b": "c"
}
],
2021-06-04 10:27:19 +08:00
"items": [
{
"name": "a",
2021-06-04 10:27:19 +08:00
"type": "input-text"
},
{
"name": "b",
"type": "select",
"options": ["a", "b", "c"]
}
]
},
{
"type": "combo",
"name": "combo2",
"label": "组合单条单行",
"value": {
"a": "a",
"b": "b"
},
2021-06-04 10:27:19 +08:00
"items": [
{
"name": "a",
2021-06-04 10:27:19 +08:00
"type": "input-text"
},
{
"name": "b",
"type": "select",
"options": ["a", "b", "c"]
}
]
}
]
}
```
接口返回如下
```json
{
"status": 422,
"msg": "",
"errors": {
"combo1": "服务器端说这个combo1有问题",
"combo1[1].a": "服务器端说这个combo1的第二项中的a有问题", // 或 combo1.1.a
"combo2": "服务器端说这个combo2有问题",
"combo2.b": "服务器端说这个combo2中的b有问题"
},
"data": null
}
```
#### Table 校验
2021-01-26 18:12:02 +08:00
Table 类型的表单项,要实现服务端校验,可以使用 `路径key` 来定位要显示报错信息的表单项,例如 `a[0].b` 定位到 a table 的第一项中 b 表单项。
例如有如下表单,点击提交,查看效果:
```schema:scope="body"
{
"type": "form",
"debug": true,
"mode": "horizontal",
"api": "/api/mock2/form/saveFormFailedTable?waitSeconds=1",
2021-06-04 10:27:19 +08:00
"body": [
2021-01-26 18:12:02 +08:00
{
"label": "Table 服务端校验",
2021-06-04 10:27:19 +08:00
"type": "input-table",
2021-01-26 18:12:02 +08:00
"name": "table",
"multiple": true,
"value": [
{
"a": "a1",
"b": "b1"
},
{
"a": "a2",
"b": "b2"
}
],
"columns": [
{
"name": "a",
"type": "text",
"label": "A",
"quickEdit": {
"mode": "inline"
}
},
{
"name": "b",
"type": "text",
"label": "B",
"quickEdit": {
"mode": "inline"
}
}
]
},
{
"label": "Combo 内 Table 服务端校验",
"type": "combo",
"name": "combo",
2021-06-04 10:27:19 +08:00
"items": [
2021-01-26 18:12:02 +08:00
{
"name": "a",
"type": "text",
"label": "A"
},
{
"label": "Table",
2021-06-04 10:27:19 +08:00
"type": "input-table",
2021-01-26 18:12:02 +08:00
"name": "table",
"multiple": true,
"value": [
{
"a": "a1",
"b": "b1"
},
{
"a": "a2",
"b": "b2"
}
],
"columns": [
{
"name": "a",
"type": "text",
"label": "A",
"quickEdit": {
"mode": "inline"
}
},
{
"name": "b",
"type": "text",
"label": "B",
"quickEdit": {
"mode": "inline"
}
}
]
}
]
}
]
}
```
接口返回如下
```json
{
"status": 422,
"msg": "",
"errors": {
"table": "表格有问题",
"table[0].a": "表格的第一项中的 a 有问题",
"table[1].b": "表格的第二项中的 b 有问题",
"combo.table[0].b": "Combo中表格的第一项中的 b 有问题",
"combo.table[1].a": "Combo中表格的第二项中的 a 有问题"
},
"data": null
}
```
### 通过表单项校验接口
可以在表单项上,配置校验接口 `validateApi`,实现单个表单项后端校验。
```schema:scope="body"
{
"type": "form",
"mode": "horizontal",
"api": "/api/mock2/form/saveForm",
"body": [
{
"label": "name",
"type": "input-text",
"name": "name",
"required": true,
"validateApi": "/api/mock2/form/formitemFailed"
},
{
"label": "email",
"type": "input-text",
"name": "email",
"validateApi": "/api/mock2/form/formitemSuccess",
"required": true
}
]
}
```
校验接口显示校验信息返回格式如下:
```json
{
"status": 422,
"errors": "当前用户已存在"
}
```
- `status`: 返回 `0` 表示校验成功,`422` 表示校验失败;
- `errors`: 返回 `status``422` 时,显示的校验失败信息;
2020-07-28 10:03:53 +08:00
## 属性表
| 属性名 | 类型 | 默认值 | 说明 |
| -------------- | -------------------------------------------------- | ------ | ---------------------------------------------------------- |
| type | `string` | | 指定表单项类型 |
| className | `string` | | 表单最外层类名 |
| inputClassName | `string` | | 表单控制器类名 |
| labelClassName | `string` | | label 的类名 |
| name | `string` | | 字段名,指定该表单项提交时的 key |
| value | `string` | | 表单默认值 |
| label | [模板](../../../docs/concepts/template) 或 `false` | | 表单项标签 |
2021-02-02 12:45:53 +08:00
| labelRemark | [Remark](../remark) | | 表单项标签描述 |
| description | [模板](../../../docs/concepts/template) | | 表单项描述 |
| placeholder | `string` | | 表单项描述 |
| inline | `boolean` | | 是否为 内联 模式 |
| submitOnChange | `boolean` | | 是否该表单项值发生变化时就提交当前表单。 |
| disabled | `boolean` | | 当前表单项是否是禁用状态 |
| disabledOn | [表达式](../../../docs/concepts/expression) | | 当前表单项是否禁用的条件 |
| visible | [表达式](../../../docs/concepts/expression) | | 当前表单项是否禁用的条件 |
| visibleOn | [表达式](../../../docs/concepts/expression) | | 当前表单项是否禁用的条件 |
| required | `boolean` | | 是否为必填。 |
| requiredOn | [表达式](../../../docs/concepts/expression) | | 过[表达式](../Types.md#表达式)来配置当前表单项是否为必填。 |
| validations | [表达式](../../../docs/concepts/expression) | | 表单项值格式验证,支持设置多个,多个规则用英文逗号隔开。 |
| validateApi | [表达式](../../../docs/types/api) | | 表单校验接口 |