1、ModalForm弹框modalProps中加destroyOnClose <ModalFormvisible={visible} modalProps={{destroyOnClose:true}} /> </ModalForm> 2、Modal弹框中加destroyOnClose <Modalvisible={visible}destroyOnClose: {true} /> </Modal>
解决方案: 1、modal的api:destroyOnClose 2、手动控制modal的销毁 this.state ={ destroy:true//设一开始为不显示状态} {this.state.isDestroy? '':<Modal className="cjy-rcm-modal" title={this.oprt} footer={null} visible={this.state.visible} onOk={this.handleOk} onCancel={this.handleCancel}> <...
背景:modal组件关闭时不清除数据,原来输入的数据还存在 解决方案: 1、modal的api:destroyOnClose 2、手动控制modal的销毁 this.state = { destroy:true //设一开始为不显示状态 } { this.state.isDestroy ? '' : <Modal className="cjy-rcm-modal" title={this.oprt} footer={null} visible={this.state....
1、modal的api:destroyOnClose 2、手动控制modal的销毁 this.state = { destroy:true //设一开始为不显示状态 } { this.state.isDestroy ? '' : <Modal className="cjy-rcm-modal" title={this.oprt} footer={null} visible={this.state.visible} onOk={this.handleOk} onCancel={this.handleCancel}> <...
onCancel点击遮罩层或右上角叉或取消按钮的回调function(e)无 onOk点击确定回调function(e)无 注意# <Modal />默认关闭后状态不会自动清空, 如果希望每次打开都是新内容,请设置destroyOnClose。 Modal.method()# 包括: Modal.info Modal.success Modal.error ...
An enterprise-class UI design language and React UI library - Modal组件的destroyOnClose属性无法销毁其中Form组件具有form属性时的状态 · ant-design/ant-design@9d13485
closeIcon自定义关闭图标VNode | slot-1.5.0 confirmLoading确定按钮 loadingboolean无 destroyOnClose关闭时销毁 Modal 里的子元素booleanfalse footer底部内容,当不需要默认底部按钮时,可以设为:footer="null"string|slot确定取消按钮 forceRender强制渲染 Modalbooleanfalse ...
背景:modal组件关闭时不清除数据,原来输入的数据还存在 解决方案: 1、modal的api:destroyOnClose 2、手动控制modal的销毁 本文转载自:https:/…
背景:modal组件关闭时不清除数据,原来输入的数据还存在解决方案:1、modal的api:destroyOnClose2、手动控制modal的销毁
<Modal />默认关闭后状态不会自动清空,如果希望每次打开都是新内容,请设置destroyOnClose。 <Modal />和 Form 一起配合使用时,设置destroyOnClose也不会在 Modal 关闭时销毁表单字段数据,需要设置<Form preserve={false} />。 Modal.method()RTL 模式仅支持 hooks 用法。