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
目前将 fields 直接存储到 redux store 中,但是会遇到如下的错误:
VM3378:21 Uncaught TypeError: Converting circular structure to JSON
经排查后发现这是 Redux DevTools 报的错,由 fields 各字段中的 'instance' 引起,在 dispatch 前删掉就可以正常。
现在想问下,这个属性的作用是什么,可以删掉吗?如果删掉没问题最好还是在 onFieldsChange 的参数中就干掉。
The text was updated successfully, but these errors were encountered:
https://github.com/react-component/form#notes
@yiminghe 或者可以整理为:
this.fieldsMeta
validateTrigger
rules
this.fileds
value
errors
this.xxx
instance
Sorry, something went wrong.
@benjycui instance 放到 this.fieldInstances 上吧
主要是顾虑都以后会不会还有类似 instance 的字段再现。。
413dc0a
No branches or pull requests
目前将 fields 直接存储到 redux store 中,但是会遇到如下的错误:
经排查后发现这是 Redux DevTools 报的错,由 fields 各字段中的 'instance' 引起,在 dispatch 前删掉就可以正常。
现在想问下,这个属性的作用是什么,可以删掉吗?如果删掉没问题最好还是在 onFieldsChange 的参数中就干掉。
The text was updated successfully, but these errors were encountered: