-
通过JSON Schema方式渲染表单,查找了下api 只能在 effects 监听表单值改变,如下: |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
大概这样 const form = createForm();
form.addEffects('e1', () => {
onFieldValueChange('aa',(field, form) => {
//TODO
})
}) |
Beta Was this translation helpful? Give feedback.
-
推荐你多看看 reactive 相关的文档。 |
Beta Was this translation helpful? Give feedback.
-
不建议这么使用, |
Beta Was this translation helpful? Give feedback.
大概这样