Angular Schema表单 - 覆盖字段的输入类型

时间:2016-05-05 07:29:04

标签: angularjs angular-schema-form

考虑架构

{
  "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"
  ]
}

如何在不使用<的情况下将性别的html表单类型从选择覆盖到其他类型(如输入类型 text ) em> x-schema-form 属性,无需重写表单的整个字段(使用“*”并只更改必填字段)。我尝试了以下表单定义但字段重复。

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

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

1 个答案:

答案 0 :(得分:1)

v1.0.0-alpha.1开始,能够使用密钥&#34; ...&#34;已添加,以允许在表单定义中添加剩余的未定义架构属性键。