react 子组件访问父组件的方法

Posted 山水一程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 子组件访问父组件的方法相关的知识,希望对你有一定的参考价值。

  1. 回调函数(推荐)
    地址:https://ourcodeworld.com/articles/read/409/how-to-update-parent-state-from-child-component-in-react
  2. 获得父组件的实例(不推荐)
    var parent = this._reactInternalInstance._currentElement._owner._instance;
    地址:https://stackoverflow.com/questions/34257665/is-there-any-way-to-access-the-parent-component-instance-in-react

以上是关于react 子组件访问父组件的方法的主要内容,如果未能解决你的问题,请参考以下文章

react 子组件访问父组件的方法

React-父组件访问子组件内部

react 父组件向子组件传递函数

React教程:父子组件传值(组件通信)

react 子组件调用父组件方法

如何在父组件调用子组件的方法