反应json模式表单不发送空值键

时间:2019-10-02 13:39:48

标签: react-jsonschema-forms

我正在使用react json模式表单进行表单创建。我正在尝试提交表格。当我发送空值时。从数据中消除了密钥。例如 在表单中,我有两个字段名称和地址。 输入项      name =“ abc”      地址=“”

输出 { 名称:abc }

必需的输出 { 名称:abc, 地址: }

1 个答案:

答案 0 :(得分:1)

您可以使用默认值。 尝试

{
  "title": "A registration form",
  "description": "A simple form example.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "name",
      "default": ""
    },
    "address": {
      "type": "string",
      "title": "address",
      "default": ""
    }
  }
}