考虑架构
{
"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 类型的性别,其中显示选择类型的性别。