1. 弹窗销毁后再打开,原来的值仍存在,如何销毁弹窗内容?
加destroyOnClose
属性,关闭时销毁子元素。再次打开内容就清空了~
<Modal
title="新增对账流水"
visible={visible}
onOk={() => {
formRef.current.handleSubmit();
}}
onCancel={onClose}
okText="确认"
cancelText="取消"
width={800}
destroyOnClose // 关闭时销毁子元素
>
如果是使用antd中的form,上述方法不起效时,将form重置:
form.resetFields(); // hooks中
或者
this.props.form.resetFields(); // class中
如果有ref,可以这样:this.formRef.current.resetFields();
2. 在Select组件options中找到目标项的value。
通常下拉的结构是:
options = [ { id:1,name:'zhangsan' },...]
findName=(val,options)=>{
const targetOption = options.find(item=> item.value=>val);
return targetOption.name;
}
3.以前文章:React学习之antd中getFieldDecorator的使用
React学习之antd中getFieldDecorator的使用
开发在继续,
持续更新中……