在我的一个React组件的render
方法中,我有以下代码,我在其中决定是否呈现表单。
{ this.state.hideForm == false
? <ListAddition classification={this.props.data} />
: null}
但是,我在代码的第二行收到以下错误:
Cannot read property '__reactAutoBindMap' of null
我确信this.props
变量已被正确实例化。可能是什么原因造成的?