React Props仅在componentWillReceiveProps中可用

时间:2018-08-29 16:49:42

标签: reactjs

我有一个接收组件的子反应组件,但仅在componentWillReceiveProps中可用。它们在componentDidMount中为null。我不希望使用该事件,因为它已被弃用。我还有其他选择吗?

1 个答案:

答案 0 :(得分:-1)

道具为空或未定义?从父组件传递到子组件的道具在componentDidMount中可用。

componentDidMount() {
    console.log(this.props)
}