2020-12-28 10:56:21 +08:00
|
|
|
|
---
|
|
|
|
|
title: UUID 字段
|
|
|
|
|
description:
|
|
|
|
|
type: 0
|
|
|
|
|
group: null
|
|
|
|
|
menuName: UUID 字段
|
|
|
|
|
icon:
|
|
|
|
|
order: 30
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## 基本用法
|
|
|
|
|
|
|
|
|
|
随机生成一个 id,可以用于防止表单重复提交。
|
|
|
|
|
|
2021-01-07 23:35:03 +08:00
|
|
|
|
```schema: scope="body"
|
2020-12-28 10:56:21 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
2021-01-19 10:20:09 +08:00
|
|
|
|
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
|
2020-12-28 10:56:21 +08:00
|
|
|
|
"debug": true,
|
|
|
|
|
"controls": [
|
|
|
|
|
{
|
|
|
|
|
"type": "uuid",
|
|
|
|
|
"name": "uuid"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
这个字段是不显示的,上面这个例子之所以显示是因为加了 `debug: true`。
|
2021-01-07 23:23:37 +08:00
|
|
|
|
|
|
|
|
|
## length
|
|
|
|
|
|
|
|
|
|
目前 uuid 的唯一可设置参数是 length,用于生成短随机数
|
|
|
|
|
|
|
|
|
|
```schema:height="200" scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
2021-01-19 10:20:09 +08:00
|
|
|
|
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
|
2021-01-07 23:23:37 +08:00
|
|
|
|
"debug": true,
|
|
|
|
|
"controls": [
|
|
|
|
|
{
|
|
|
|
|
"type": "uuid",
|
|
|
|
|
"name": "uuid",
|
|
|
|
|
"length": 8
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|