We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现在有一个场景,是form的外层组件需要实时感知用户对form的修改,并获取change后的formData。 但是目前只能通过ref获取,或者通过submit来一次性获取最终结果,无法感知用户的实时修改。
/
The text was updated successfully, but these errors were encountered:
const onChange = ({ //表单数据 formData, //ui配置信息 uiSchema, //校验配置信息 dataSchema, //联动dispatch函数 dispatch, //监听数据变化的表单(展示最后一次的表单的fieldKey) changeKey, //ajv、异步校验是否校验完毕 checking, //dispatch语法糖,获取表单的值、uiSchema、dataSchema等信息 get, //dispatch语法糖,设置表单的值、uiSchema、dataSchema set, //类似set,深度合并(set是替换,merge是合并) merge, //删除某个表单 deleteField, }) => { // do anything } <DripForm control={onChange}>
我理解需要 [[control支持外抛表单错误信息]] ,支持进度查看
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
现在有一个场景,是form的外层组件需要实时感知用户对form的修改,并获取change后的formData。
但是目前只能通过ref获取,或者通过submit来一次性获取最终结果,无法感知用户的实时修改。
Description
Describe the solution you'd like
/
Describe alternatives you've considered
/
Self-service
The text was updated successfully, but these errors were encountered: