mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 11:58:10 +08:00
54e56402d2
* 文档样式一点小优化 * 文档拆分组件部分
39 lines
860 B
Markdown
Executable File
39 lines
860 B
Markdown
Executable File
---
|
|
title: Hidden 隐藏字段
|
|
description:
|
|
type: 0
|
|
group: null
|
|
menuName: Hidden 隐藏字段
|
|
icon:
|
|
order: 26
|
|
---
|
|
|
|
## 基本用法
|
|
|
|
默认表单提交,在没有 [自定义 API 请求数据](../../../docs/types/api#%E9%85%8D%E7%BD%AE%E8%AF%B7%E6%B1%82%E6%95%B0%E6%8D%AE) 的情况下,只会发送 `controls` 里面的这些成员,对于隐藏的字段同时又希望提交表单的时候带过去,可以使用 `hidden` 组件
|
|
|
|
```schema: scope="body"
|
|
{
|
|
"type": "form",
|
|
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
|
|
"debug": true,
|
|
"controls": [
|
|
{
|
|
"type": "hidden",
|
|
"name": "id",
|
|
"value": 1
|
|
},
|
|
{
|
|
"type": "text",
|
|
"name": "name",
|
|
"label": "姓名:"
|
|
},
|
|
{
|
|
"name": "email",
|
|
"type": "email",
|
|
"label": "邮箱:"
|
|
}
|
|
]
|
|
}
|
|
```
|