Cannot read property 'someProperty' of undefined in react

后端 未结 2 1977
误落风尘
误落风尘 2021-01-23 20:55

I am working on an application where I pass variable values in a Navlink using state from one component to the other and then load those received values in input fields and clic

2条回答
  •  悲&欢浪女
    2021-01-23 21:41


     this.state = {id: this.props.location && this.props.location.state && this.props.location.state.id}
    

    Should fix your issue that caused by times that this component called without this context or this line got excuted before location set. (assuming you using withRouter for making location props be exist...)

    Anyhow, and not related directly to your issue, it is bad practice to set initial value for state from props at constructor, consider manipulate state through life cycle either don't use state here and refer to props directly

提交回复
热议问题