2022-05-10 23:35:56 +08:00
|
|
|
---
|
|
|
|
title: JSONSchema
|
|
|
|
description:
|
|
|
|
type: 0
|
|
|
|
group: null
|
|
|
|
menuName: JSONSchema
|
|
|
|
icon:
|
|
|
|
order: 61
|
|
|
|
---
|
|
|
|
|
|
|
|
## 基本用法
|
|
|
|
|
|
|
|
> 1.10.0 及以上版本
|
|
|
|
|
2023-06-30 15:48:24 +08:00
|
|
|
这个组件可以基于 JSON Schema 生成表单项,方便对接类似 OpenAPI/Swagger Specification 的接口规范,可基于接口定义自动生成 amis 表单项。
|
|
|
|
|
2022-05-10 23:35:56 +08:00
|
|
|
> 此组件还在实验阶段,很多 json-schema 属性没有对应实现,使用前请先确认你要的功能满足了需求
|
|
|
|
|
|
|
|
基于 json-schema 定义生成表单输入项。
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
{
|
|
|
|
"type": "form",
|
|
|
|
"api": "/api/mock2/form/saveForm",
|
|
|
|
debug: true,
|
|
|
|
"body": [
|
|
|
|
{
|
|
|
|
"type": "json-schema",
|
|
|
|
"name": "value",
|
|
|
|
"label": "字段值",
|
|
|
|
"schema": {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'number',
|
|
|
|
title: 'ID'
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
title: '名称'
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
title: '描述'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 复杂 case
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
{
|
|
|
|
"type": "form",
|
|
|
|
"api": "/api/mock2/form/saveForm",
|
|
|
|
debug: true,
|
|
|
|
"body": [
|
|
|
|
{
|
|
|
|
"type": "json-schema",
|
|
|
|
"name": "value",
|
|
|
|
"label": "字段值",
|
|
|
|
"schema": {
|
|
|
|
type: 'object',
|
|
|
|
additionalProperties: false,
|
|
|
|
required: ['id', 'name'],
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'number',
|
|
|
|
title: 'ID'
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
title: '名称'
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
title: '描述'
|
|
|
|
},
|
|
|
|
date: {
|
|
|
|
type: 'object',
|
|
|
|
title: '日期',
|
|
|
|
additionalProperties: false,
|
|
|
|
required: ['year', 'month', 'day'],
|
|
|
|
properties: {
|
|
|
|
year: {
|
|
|
|
type: 'number',
|
|
|
|
title: '年'
|
|
|
|
},
|
|
|
|
month: {
|
|
|
|
type: 'number',
|
|
|
|
title: '月'
|
|
|
|
},
|
|
|
|
day: {
|
|
|
|
type: 'number',
|
|
|
|
title: '日'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tag: {
|
|
|
|
type: 'array',
|
|
|
|
title: '个人标签',
|
|
|
|
items: {
|
|
|
|
type: 'string'
|
|
|
|
},
|
|
|
|
minContains: 2,
|
|
|
|
maxContains: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-04-03 11:33:42 +08:00
|
|
|
## 搭配公式使用
|
|
|
|
|
|
|
|
> 6.4.0 及以上版本
|
|
|
|
|
|
|
|
通过配置 `formula` 属性,可以配合公式使用。
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
{
|
|
|
|
"type": "form",
|
|
|
|
"api": "/api/mock2/form/saveForm",
|
|
|
|
debug: true,
|
|
|
|
"body": [
|
|
|
|
{
|
|
|
|
"type": "json-schema",
|
|
|
|
"name": "value",
|
|
|
|
"label": "字段值",
|
|
|
|
"schema": {
|
|
|
|
type: 'object',
|
|
|
|
additionalProperties: false,
|
|
|
|
required: ['id', 'name'],
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'number',
|
|
|
|
title: 'ID'
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
title: '名称'
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
title: '描述'
|
|
|
|
},
|
|
|
|
date: {
|
|
|
|
type: 'object',
|
|
|
|
title: '日期',
|
|
|
|
additionalProperties: false,
|
|
|
|
required: ['year', 'month', 'day'],
|
|
|
|
properties: {
|
|
|
|
year: {
|
|
|
|
type: 'number',
|
|
|
|
title: '年'
|
|
|
|
},
|
|
|
|
month: {
|
|
|
|
type: 'number',
|
|
|
|
title: '月'
|
|
|
|
},
|
|
|
|
day: {
|
|
|
|
type: 'number',
|
|
|
|
title: '日'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tag: {
|
|
|
|
type: 'array',
|
|
|
|
title: '个人标签',
|
|
|
|
items: {
|
|
|
|
type: 'string'
|
|
|
|
},
|
|
|
|
minContains: 2,
|
|
|
|
maxContains: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"formula": {
|
|
|
|
"mode":"input-group",
|
|
|
|
"mixedMode": true,
|
|
|
|
"variables": [
|
|
|
|
{
|
|
|
|
"label": "表单字段",
|
|
|
|
"children": [
|
|
|
|
{
|
|
|
|
"label": "文章名",
|
|
|
|
"value": "name",
|
|
|
|
"tag": "文本"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "作者",
|
|
|
|
"value": "author",
|
|
|
|
"tag": "文本"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "售价",
|
|
|
|
"value": "price",
|
|
|
|
"tag": "数字"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "出版时间",
|
|
|
|
"value": "time",
|
|
|
|
"tag": "时间"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "版本号",
|
|
|
|
"value": "version",
|
|
|
|
"tag": "数字"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "出版社",
|
|
|
|
"value": "publisher",
|
|
|
|
"tag": "文本"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "流程字段",
|
|
|
|
"children": [
|
|
|
|
{
|
|
|
|
"label": "联系电话",
|
|
|
|
"value": "telphone"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "地址",
|
|
|
|
"value": "addr"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "长文本测试分类长文本测试分类长文本测试分类长文本测试分类",
|
|
|
|
"children": [
|
|
|
|
{
|
|
|
|
"label": "这是一段测试长文本这是一段测试长文本这是一段测试长文本",
|
|
|
|
"value": "longtext",
|
|
|
|
"tag": "文本"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-05-10 23:35:56 +08:00
|
|
|
## 远程获取 schema
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
{
|
|
|
|
"type": "form",
|
|
|
|
debug: true,
|
|
|
|
"body": [
|
|
|
|
{
|
|
|
|
"type": "json-schema",
|
|
|
|
"name": "value",
|
|
|
|
"label": "字段值",
|
|
|
|
"schema": "/api/mock2/json-schema"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 属性表
|
|
|
|
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
|
|
| ------ | -------------------- | ------ | ---------------- |
|
|
|
|
| schema | `object` \| `string` | | 指定 json-schema |
|