3

考虑架构

{
  "type": "object",
  "title": "Comment",
  "properties": {
    "name": {
      "title": "Name",
      "type": "string"
    },
    "gender":{
        "title":"Gender",
        "type":"string",
        "enum":["m","f"]
    },
    "comment": {
      "title": "Comment",
      "type": "string",
      "maxLength": 20,
      "validationMessage": "Don't be greedy!"
    }
  },
  "required": [
    "name",
    "email",
    "comment"
  ]
}

如何在不使用x-schema-form属性且不重写表单的整个字段(使用“* 仅更改必填字段)。我尝试了以下表单定义,但该字段重复。

[
  "*",
  {
      "key":"gender",
      "type":"text"
  },
  {
    "type": "submit",
    "style": "btn-info",
    "title": "OK"
  }
]

上面的定义将显示两个性别字段,一个是select类型,另一个是text类型。我的要求是只显示一种类型的文本性别,其中显示类型选择的性别

4

1 回答 1

1

v1.0.0-alpha.1开始,添加了使用键“...”的功能,以允许在表单定义中添加剩余的未定义架构属性键。

于 2017-06-06T04:52:33.487 回答