zoukankan      html  css  js  c++  java
  • react组件之间的几种通信情况

    组件之间的几种通信情况

    • 父组件向子组件通信
    • 子组件向父组件通信
    • 跨级组件通信
    • 没有嵌套关系组件之间的通信

    1,父组件向子组件传递

    React数据流动是单向的,父组件向子组件通信也是最常见的;父组件通过props向子组件传递需要的信息

    在引用子组件的时候传递,相当于一个属性,例如:

    //父组件
    class
    Parent extends Component{ state = { msg: 'start' }; render() { return <Child parms={this.state.msg} />; //父组件引用子组件时,将state状态数据以属性的方式传递给子组件props对象的parms属性中 } } //子组件 class Child extends Component{
      constructor(...args){
        super(...args); //调用父类的 constructor(x, y),继承父组件的this对象,这是因为子类没有自己的this对象,而是继承父类的this对象,
                  //只有render时,可以不用写,在render函数以外要使用this,就得调用super()方法
      }
    
      render() {
        return <p>{this.props.parms}</p> //子组件通过this.props.parms使用父组件传递过来的值
     } }

    2,子组件向父组件传递

    • 利用回调函数
    • 利用自定义事件机制

    子组件通过 调用父组件传递到子组件的方法  让父组件自己去修改自己的状态值。

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

         <Child parm={this.state.msg} transMsg={msg=>this.transMsg(msg)}/>
       <Child name={this.state.name} parent={this} /> //将整个this传递给子组件
     

    子组件调用父组件函数:
    this.props.transMsg(parms);

    this.props.parent.fn(666);//子组件使用props.parent的整个父组件可以任意调用父组件下的函数

    完整代码:

    class Parent extends Component{
     
        constructor(props) {
            super(props);
            state = {
                msg: 'start'
            };
        }
        transMsg(types){
            var newOrders = [];
            for(let type of types){
                if(type)
                alert(type);
            }
            
          }
      render() {
        return <Child parms={this.state.msg} />;
      }
    }
    class Child extends Component{
        
         constructor(props) {
            super(props);
            // call parent component
            console.log("parms :",this.props.parms);
           this.props.transMsg("hi ~~");
        }
      render() {
        return <p>{this.props.parms}</p>
      }
    }

  • 相关阅读:
    CSV文件读取类
    一个参数处理类
    记一个mysql的问题
    php问题小记
    wsl开nginx和php-fpm遇到的几个小问题
    debian apache2.4 virtual host 使用
    debian 安装 apache2和php7
    杂记整理三:php、thinkphp和sql
    杂记整理二:linux与程序安装
    杂记整理一:javascript, jQuery 以及 ECMAscript
  • 原文地址:https://www.cnblogs.com/hanguidong/p/9513592.html
Copyright © 2011-2022 走看看