Replies: 2 comments 3 replies
-
给个 codesandbox 看看? |
Beta Was this translation helpful? Give feedback.
1 reply
-
这个不是 bug ,因为生成 graph 树是依赖渲染的,然后渲染过程其实是个异步过程,所以就是这样表现 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
form.setFieldState
to set an array value, likeform.setFieldState('arr', state => { state.value = [{arrA: 111, arrB: 222}] })
form.getFormGraph()
function immediately, I will not getsetTimeout(() => { console.log(form.getFormGraph()) }, [])
I will get the final correct FormGraph.
can I get formGraph synchronized, or it is designed as asynchronized?
Beta Was this translation helpful? Give feedback.
All reactions