React 父组件触发子组件事件

Posted pengzhao-mr

tags:

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

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 父组件触发子组件事件的主要内容,如果未能解决你的问题,请参考以下文章

vue---vue2.x中父组件事件触发子组件事件

$emit 不会触发子事件

从路由加载子组件时从父组件触发子组件方法

vue子组件的自定义事件

React 功能组件状态变化不会触发子组件重新读取其 props

vue父组件调用子组件资源