gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 03:16:03 25 4
gpt4 key购买 nike

考虑架构

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

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

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

上面的定义将显示两个gender 字段,一个是select 类型,另一个是text 类型。我的要求是只显示 text 类型的gender,其中显示select 类型的gender。 p>

最佳答案

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

关于angularjs - Angular Schema 表单 - 覆盖字段的输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37044910/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com