解决antd的Warning: Instance created by `useForm` is not connected to any Form element.问题

先描述下这个问题的由来:
解决antd的Warning: Instance created by `useForm` is not connected to any Form element.问题
把form表单放在Modal中,当进入时报的错误,没有挂载到(连接到)这个表单,所以报错。
网上很多的文章都说使用如下方法:
解决antd的Warning: Instance created by `useForm` is not connected to any Form element.问题
可是这还解决不了问题,报警告还是一样。
可以使用这个api解决 —— forceRender
解决antd的Warning: Instance created by `useForm` is not connected to any Form element.问题
设置强制渲染给为true

 <Modal
                    title="发布"
                    visible={visible}
                    onOk={handleOk}
                    okText="发布"
                    cancelText="取消"
                    onCancel={handleCancel}
                    confirmLoading={confirmLoading}
                    forceRender={true}
                >   
                <p>666</p>
 </Modal>

上一篇:vue、element-ui 后台菜单切换重新请求数据


下一篇:php实现冒泡排序