componentWillReceiveProps怎么触发?

看了很多教程,都说componentWillReceiveProps要传入一个参数,那么到底在哪里调用这个函数,传入参数呢?网上找了很多,都没讲怎么触发。

阅读 7.4k
1 个回答

componentWillReceiveProps() is invoked before a mounted component receives new props. If you need to update the state in response to prop changes (for example, to reset it), you may compare this.props and nextProps and perform state transitions using this.setState() in this method.

当组件传入的 props 发生变化时调用,例如:父组件状态改变,给子组件传入了新的prop值。用于组件 props 变化后,更新state。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题