2020-07-28 10:03:53 +08:00
---
title: Json
2020-10-19 09:37:34 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: ⚙ 组件
menuName: Json
2020-10-19 09:37:34 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 54
---
2020-10-19 09:37:34 +08:00
2020-07-28 10:03:53 +08:00
JSON 展示组件
## 基本用法
2020-10-19 09:37:34 +08:00
可以配置 `value` 展示 `json` 格式数据
2021-01-07 23:35:03 +08:00
```schema
2020-07-28 10:03:53 +08:00
{
"type": "page",
"body": {
"type": "json",
"value": {
"a": "a",
"b": "b",
"c": {
"d": "d"
}
}
}
}
```
2020-10-19 09:37:34 +08:00
## 获取数据链值
也可以通过配置 `source` 获取数据链中的值
2021-01-07 23:35:03 +08:00
```schema
2020-10-19 09:37:34 +08:00
{
"type": "page",
"data":{
"json":{
"a": "a",
"b": {
"c": "c"
}
}
},
"body": {
"type": "json",
"source": "${json}"
}
}
```
## 用作 Field 时
当用在 Table 的列配置 Column、List 的内容、Card 卡片的内容和表单的 Static-XXX 中时,可以设置`name`属性,映射同名变量
### Table 中的列类型
2021-01-07 23:35:03 +08:00
```schema: scope="body"
2020-10-19 09:37:34 +08:00
{
"type": "table",
"data": {
"items": [
{
"id": "1",
"json": {
"a": "a1",
"b": {
"c": "c1"
}
}
},
{
"id": "2",
"json": {
"a": "a2",
"b": {
"c": "c2"
}
}
},
{
"id": "3",
"json": {
"a": "a3",
"b": {
"c": "c3"
}
}
}
]
},
"columns": [
{
"name": "id",
"label": "Id"
},
{
"name": "json",
"label": "颜色",
"type": "json"
}
]
}
```
List 的内容、Card 卡片的内容配置同上
### Form 中静态展示
2021-01-07 23:35:03 +08:00
```schema: scope="body"
2020-10-19 09:37:34 +08:00
{
"type": "form",
"data": {
"json": {
"a": "a",
"b": {
"c": "c"
}
}
},
2021-06-07 10:09:55 +08:00
"body": [
2020-10-19 09:37:34 +08:00
{
2021-08-06 20:03:00 +08:00
"type": "control",
2020-10-19 09:37:34 +08:00
"name": "json",
2021-08-06 20:03:00 +08:00
"label": "Json",
"body": {
"type": "json"
}
2020-10-19 09:37:34 +08:00
}
]
}
```
2020-07-28 10:03:53 +08:00
## 主题
可配置`jsonTheme`,指定显示主题,可选`twilight`和`eighties`,默认为`twilight`。
2021-01-07 23:35:03 +08:00
```schema: scope="body"
2020-07-28 10:03:53 +08:00
[
{
"type": "json",
"value": {
"a": "a",
"b": "b",
"c": {
"d": "d"
}
}
},
{
"type": "divider"
},
{
"type": "json",
"jsonTheme": "eighties",
"value": {
"a": "a",
"b": "b",
"c": {
"d": "d"
}
}
}
]
```
## 配置默认展开层级
2021-01-07 23:35:03 +08:00
```schema
2020-07-28 10:03:53 +08:00
{
"type": "page",
"body": {
"type": "json",
"levelExpand": 0,
"value": {
"a": "a",
"b": "b",
"c": {
"d": "d"
}
}
}
}
```
如上,`levelExpand`配置为`0`,则默认不展开。
2021-08-06 20:03:00 +08:00
## 开启 json 修改
> since 1.2.3
可配置`mutable` 为 true, 展示 json 的同时支持修改。记得配置 name 属性。
```schema: scope="body"
[
{
"type": "json",
"name": "json",
"mutable": true,
"value": {
"a": "a",
"b": "b",
"c": {
"d": "d"
}
}
}
]
```
2021-11-16 20:23:55 +08:00
## 显示数据类型显示
还可以使用 `displayDataTypes` 开启数据类型显示
```schema
{
"type": "page",
"body": {
"type": "json",
"displayDataTypes": true,
"value": {
"a": 1,
"b": "b",
"c": {
"d": "d"
}
}
}
}
```
2022-06-17 14:30:12 +08:00
## 文本过长自动处理
> 2.0.0 及以上版本
设置`ellipsisThreshold`可以设置字符串的最大展示长度,点击字符串可以切换全量/部分展示方式,默认展示全量字符串。
```schema
{
"type": "page",
"body": {
"type": "json",
"ellipsisThreshold": 80,
"value": {
"text": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
}
}
}
```
2020-07-28 10:03:53 +08:00
## 属性表
2022-06-17 14:30:12 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| ----------------- | ----------------- | ---------- | ------------------------------------------------------------------------------------ |
| type | `string` | | 如果在 Table、Card 和 List 中,为`"json"`;在 Form 中用作静态展示,为`"static-json"` |
| className | `string` | | 外层 CSS 类名 |
| value | `object` /`string` | | json 值,如果是 string 会自动 parse |
| source | `string` | `''` | 通过数据映射获取数据链中的值 |
| placeholder | `string` | `-` | 占位文本 |
| levelExpand | `number` | `1` | 默认展开的层级 |
| jsonTheme | `string` | `twilight` | 主题,可选`twilight`和`eighties` |
| mutable | `boolean` | `false` | 是否可修改 |
| displayDataTypes | `boolean` | `false` | 是否显示数据类型 |
| ellipsisThreshold | `number` | `false` | 设置字符串的最大展示长度,点击字符串可以切换全量/部分展示方式,默认展示全量字符串 |