for example, in a very large form, each form item item is wrapped by getFieldDecorator, because the onChange event of the wrapped input component triggers the forceUpdate, on the Form.create layer, so the whole form will be re-render
at this time, if it is the Input component that triggers the onChange event, it will obviously start stuttering
the easiest way here is to split the form into several components. Put a separate Form.create, on each component to prevent the entire form from being re-render.
also find an antd-react-form-builder, to see that readme has solved part of the problem, but it has not been used in detail
excuse me, is there any other way?