我曾经在我的项目中使用jsonform,但现在我迁移到 react,所以我使用这个库(react-jsonschema-form)。在 jsonform 中,我可以在表单部分中有一些不在模式中的字段集。像这样 :
{
"schema":
{
"firstName": {
"type": "string",
"title": "Is JSON Form useful?",
}
},
"form": [
{
"key": "firstName",
"type": "text",
},
{
"title" : "this is non-schema",
"type": "fieldset"
}
]
}
你可以在jsonschema 游乐场测试它。请帮助我在react-jsonschema-form中执行类似上述代码的操作。我怎样才能有一些不在模式中但我想在 uiSchema 中显示它们的字段?
react-jsonschema-form 也有一个游乐场。您可以找到一个名为“日期”的字段。它在 uiSchema 中添加,但在 schema 部分中不存在。结果中也没有显示该字段。我不知道如果它不存在他们为什么要使用它!!!!
谢谢。