我正在使用 react-jsonschema-form 动态生成表单字段。我正在使用它在表单中仅生成几个附加字段。因此我没有在 react-jsonschema-form 中使用提交功能。相反,我也使用我的表单提交生成的字段值。
我正在使用这个状态钩子来存储更新属性的值
const [additionalData, setAdditionalData] = useState("")
我想要做的是从 react-jsonschema-form 中的 onChange 更新附加数据的值。
function getTemplateFields(data: string) {
const json = JSON.parse(data)
const log = (type: string) => console.log.bind(console, type);
return <div>
{json &&
<Form schema={json}
onChange={e => {
setAdditionalData(e.schema.properties) // something like this
}}
children={true} // hide submit button
onError={log("errors")}/>
}
</div>
}
但我无法从事件中获取更新字段值。有人可以帮我弄这个吗。