有时候我们需要使用Model组件来显示有初始值的数据,比如Form、video等待,但在外部函数赋值或者执行自身函数时,会提示null,需要在Model加一个forceRender={true}的属性,一般子组件用到了ref,Model就需要加一个这样的属性
<Modal
width={650}
forceRender={true}
title="播放"
visible={visible}
maskClosable={false}
//onOk={handleOk}
// confirmLoading={confirmLoading}
onCancel={handleCancel}
footer={null}
>
<video
ref={videoRef}
src={audioPlayUrl}
width="600"
height="350"
controls
autoPlay
played={play}
/>
</Modal>