我通过在reactjs中使用ref从另一个组件打开模态。因为我在下面的代码。
otpModalRef =({onOpenModal})=> { this.showModal = onOpenModal;}并在代码下面呈现…
您需要调用React.createRef()来创建句柄,而不是像在roure代码中那样。
class MyComponent extends React.Component { constructor(props) { super(props); this.otpModalRef = React.createRef(); } render() { ... } }