componentWillReceiveProps这个生命周期的时候,调用的函数会被无限触发?

新手上路,请多包涵
  • 关于componentWillReceiveProps的使用

 componentWillReceiveProps(nextProps) {
    const {state,props} = this
    if (nextProps.formList.length && !this.state.formId) {
      this.setState({ formId: nextProps.formList[0].formOriginId });
    }
    props.getFormTemplate({
      formId: nextProps.formList[0].formOriginId
    })
  }
阅读 5.4k
1 个回答

clipboard.png这个地方是你改变了 formId 因此,把生命周期进入了死循环

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