码迷,mamicode.com
首页 > 其他好文 > 详细

React 父组件触发子组件事件

时间:2019-06-11 13:06:55      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:箭头   return   port   ret   ldd   extends   idm   from   dev   

Parent组件

import React from "react";
import Child from "./component/Child";

class Parent extends React.Component {
  render() {
    return (
      <div>
        我是父组件
        <Child childEvevnt={this.childEvevnt} />
        <button onClick={this.triggerEvevt}>触发子</button>
      </div>
    );
  }
  // 此事件接收子对象
  childEvevnt = childDate => {
    this.$child = childDate;
  };
  // 父组件触发子组件的事件
  triggerEvevt = () => {
    this.$child.alertEvevnt();
  };
}

export default Parent;

Child组件

import React from "react";
class Child extends React.Component {
  render() {
    return <div>我是子组件</div>;
  }
  componentDidMount() {
    this.props.childEvevnt(this);
  }
  // 父组件要触发的事件
  alertEvevnt = () => {
    alert("父呼唤我呢!!");
  };
}
export default Child;

 注意点:

     1.使用箭头函数,小心this指向有差错

  ()=>  {  }

     2.父组件通过props传参把子组件对象接收过来   

   <Child childEvevnt={this.childEvevnt} />

     3.子组件内部进行传递 

  componentDidMount() {
    this.props.childEvevnt(this);
  }
      4.父组件把接收过来的子对象绑定到父自定义事件上
  childEvevnt = childDate => {
    this.$child = childDate;
  };
      5.父组件内部触发子组件的事件
        this.$child 上有了子组件的事件
      6.触发
  triggerEvevt = () => {
    this.$child.alertEvevnt();
  };
     

React 父组件触发子组件事件

标签:箭头   return   port   ret   ldd   extends   idm   from   dev   

原文地址:https://www.cnblogs.com/PengZhao-Mr/p/11002869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!