amis/docs/zh-CN/components/form/hidden.md
liaoxuezhi 65ac422ed6
1.2.x 文档&示例配置调整 (#2064)
* 补充容错

* fix: form 中 name 关联顶层数据初始化失效

* 更新 examples

* 文档调整

* 删除多余的文档, 调整 schema

* schema 调整

* schema 调整

* control 类型容器 control 改成 body

* 修复一个选项加载的bug

* form 注册直接用 type
2021-06-07 10:09:55 +08:00

864 B
Executable File

title description type group menuName icon order
Hidden 隐藏字段 0 null Hidden 隐藏字段 26

基本用法

默认表单提交,在没有 自定义 API 请求数据 的情况下,只会发送 body 里面的这些成员,对于隐藏的字段同时又希望提交表单的时候带过去,可以使用 hidden 组件

{
  "type": "form",
  "api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
  "debug": true,
  "body": [
    {
      "type": "hidden",
      "name": "id",
      "value": 1
    },
    {
      "type": "input-text",
      "name": "name",
      "label": "姓名:"
    },
    {
      "name": "email",
      "type": "input-email",
      "label": "邮箱:"
    }
  ]
}