ref返回null值reactjs。怎么处理?

时间:2019-03-14 11:53:32

标签: javascript reactjs

我正在使用reactjs中的ref从另一个组件打开模式。为此,我正在执行以下代码。

otpModalRef = ({onOpenModal}) => {
       this.showModal = onOpenModal;
}

并在代码下方的渲染中

<div className="otp_modal">
    <Otp ref={this.otpModalRef} ></Otp>
</div>

&然后通过this.showModal();调用寄存器函数,它工作正常。但是当我单击登录按钮时,它会给我TypeError: Cannot read property 'onOpenModal' of null。下面是登录和注册功能。

    login = (e) => {
    e.preventDefault();
     axios.post('/api/signin', { 
                    user:this.state.user,
                    password:this.state.login_pass,
                })
      .then(res => {
            console.log(res);
            this.context.router.history.push({
                    pathname:'/',
                });

      })
      .catch(function (error) {
        console.log(error.message);
      })
}

register = (e) => {
    e.preventDefault();     
    axios.post('/api/user/add', { 
                    firstname: this.state.fname,
                    lastname:this.state.lname,
                    email:this.state.emailaddress,
                    password:this.state.password,
                    mobile:this.state.mobile 
                },              
            )
      .then(res => {
            console.log(res);
            this.showModal();
      })
}

没有得到什么问题?如果我评论otpModalRef,它将重定向到主页,但如果我保留,则会出现此空错误。

1 个答案:

答案 0 :(得分:2)

您需要调用React.createRef()创建一个句柄,而不是像在roure代码中那样。

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.otpModalRef = React.createRef();
  }
  render() {
    ...
  }
}