最近有一个场景是Child2组件点击让Child1组件里面的state的值发生改变,Child1是一个公用组件,把里面的state值改为props传递,修改内容太多,容易出错,就想找其他的方法来解决兄弟组件调用方法问题,下面看代码:

Child1 是第一个子组件

  1. class Child1 extends React.Component {
  2. constructor(props) {
  3. super(props);
  4. this.state = {
  5. text:'Child1'
  6. };
  7. }
  8. onChange=()=>{
  9. this.setState({
  10. text:'Child1 onChange'
  11. })
  12. }
  13. componentDidMount(){
  14. this.props.onRef&&this.props.onRef(this)
  15. }
  16. render() {
  17. return (
  18. <div>{this.state.text}</div>
  19. );
  20. }
  21. }

是第二个子组件,和Child1是兄弟组件;

class Child2 extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
    };
  }

  render() {
    return (
      <div onClick={this.props.myOnClick}>Child2</div>
    );
  }
}

home 父组件

class Home extends React.Component {

  constructor(props) {
    super(props);
    this.state = {
    };
  }
  onRef=(ref)=>{
    this.child1=ref;
  }

  render() {
    return (
      <div className="home">
        <Child1 onRef={this.onRef}/>
        <Child2 myOnClick={
          ()=>{
            this.child1.onChange&&this.child1.onChange()
          }
        } />
        </div>
    );
  }
}

分析

  • 第一步:在Child1组件的componentDidMount生命周期里面加上this.props.onRef(this),把Child1都传递给父组件,
  • 第二步父组件里面 <Child1 onRef={this.onRef}/>this.onRef方法为onRef=(ref)=>{this.child1=ref;};
  • 第三步 Child2组件触发一个事件的时候,就可以直接这样调用this.child1.onChange(),Child1组件里面就会直接调用onChange函数,修改text为Child1 onChange;

到这里就可以实现调用兄弟组件,其实还是用父组件做了中间传递。

参考

https://blog.csdn.net/weixin_34250709/article/details/88729438