我们使用 angular-schema-from 来自 json schema 和 json from 的 redring 形式
有些我们没有获得枚举的默认值,
请参考下面的表格和架构...
模式 json:
{
"type": "object",
"title": "Comment",
"properties": {
"contactDetails": {
"title": "Contact Person",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"contactType": {
"title": "Contact Type",
"description": "Select",
"type": "string",
"default": "test",
"enum": ["test", "test1"]
}
}
}
}
}
}
格式 json:
[
"contactDetails[].contactType",
{
"type": "submit",
"style": "btn-info",
"title": "OK"
}
]