REACT ref.current 在条件渲染组件中为 null

问题描述

我想在使用 ref 的组件外部单击按钮时实现打开的 react-datepicker 日历。如果它在条件渲染之外,它工作正常。如果我放入条件语句,我会得到 TypeError: this.calendarRef.current is null。它是类组件,并且在构造函数中定义了 calendarRef。

import React from 'react';
import Grid from '@material-ui/core/Grid';
import Button from '@material-ui/core/Button';
import DatePicker from "react-datepicker";

const MyCustomDatePicker = React.forwardRef((props,ref) => (
   <DatePicker
    ref={ref}
    selected={new Date()}
    popperPlacement="bottom-start"
    monthsShown={2}
   />
));

class DaterangeCustom extends React.Component {
    constructor(props) {
       super(props);
       this.state = {
          currentDate: '01/12/2021',ddCalendarOn: false,endDate: '08/12/2021',};

    this.calendarRef = React.createRef();
}

handleCalendarBtnClick = () => {
    console.log('*** HANDLE CALENDAR BTN ***');
    this.setState((state) => ({
        ddCalendarOn: !state.ddCalendarOn
    }));
    this.calendarRef.current.setopen(true);
}

render() {
    console.log('*** render ****')
    return (
        <Grid container>
            <Grid>
                <Grid container direction="column">
                    <Button
                        onClick={this.handleCalendarBtnClick}
                    >
                        SHOW
                    </Button>
                    {this.state.ddCalendarOn && <MyCustomDatePicker
                        ref={this.calendarRef}
                    />}                        
                </Grid>
            </Grid>
        </Grid>
    );
  }
}

export default DaterangeCustom;

感谢您的建议。

解决方法

ref 在渲染后注册到组件上。但是你有条件地渲染它:this.state.ddCalendarOn 然后尝试直接调用它。这将不起作用,因为状态更改将导致渲染,然后才会注册 ref。

我会尝试使用更具声明性的方法,我认为 API 允许这样做。类似的东西:

<MyCustomDatePicker ref={this.calendarRef} open={this.state.ddCalendarOn}/>

然后您处理 Callendar 组件本身的打开状态。 React 考虑到尽可能使用这种声明式方法,并且很少需要使用 ref 来强制调用某些东西。当您将 Callendar 的 "open" 属性设置为 false 时,它​​不会呈现,结果应该是一样的。

,

我的错,

非常简单的事情和愚蠢的错误。不需要使用 ref 或 forwardRef。只需将 open 设置为与渲染条件相同的变量即可使其工作。

import React from 'react';
import Grid from '@material-ui/core/Grid';
import Button from '@material-ui/core/Button';
import DatePicker from "react-datepicker";

class DateRangeCustom extends React.Component {
    constructor(props) {
       super(props);
       this.state = {
          currentDate: '01/12/2021',ddCalendarOn: false,endDate: '08/12/2021',};
}

handleCalendarBtnClick = () => {
    console.log('*** HANDLE CALENDAR BTN ***');
    this.setState((state) => ({
        ddCalendarOn: !state.ddCalendarOn
    }))
}

render() {
    console.log('*** render ****')
    return (
        <Grid container>
            <Grid>
                <Grid container direction="column">
                    <Button
                        onClick={this.handleCalendarBtnClick}
                    >
                        SHOW
                    </Button>
                    {this.state.ddCalendarOn && <DatePicker
                       open={this.state.ddCalendarOn}
                       selected={new Date()}
                       popperPlacement="bottom-start"
                       monthsShown={2}
                    />}                        
                </Grid>
            </Grid>
        </Grid>
    );
  }
}

export default DateRangeCustom;

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...