欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于react中组件通信的几种方式详解

程序员文章站 2022-07-10 16:38:05
前言 刚入门react可能会因为react的单向数据流的特性而遇到组件间沟通的麻烦,下面这篇文章就来给大家详细介绍下,在开始之前先来看一张图: react组件通信...

前言

刚入门react可能会因为react的单向数据流的特性而遇到组件间沟通的麻烦,下面这篇文章就来给大家详细介绍下,在开始之前先来看一张图:

关于react中组件通信的几种方式详解

react组件通信

  • 需要组件之进行通信的几种情况
  • 父组件向子组件通信
  • 子组件向父组件通信
  • 跨级组件通信
  • 没有嵌套关系组件之间的通信

1. 父组件向子组件通信

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

import react from 'react';
import proptypes from 'prop-types';
export default function child({ name }) {
 return <h1>hello, {name}</h1>;
}
child.proptypes = {
 name: proptypes.string.isrequired,
};

parent.jsx

import react, { component } from 'react';
import child from './child';
class parent extends component {
 render() {
  return (
   <div>
    <child name="sara" />
   </div>
  );
 }
}
export default parent;

2. 子组件向父组件通信

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

回调函数

实现在子组件中点击隐藏组件按钮可以将自身隐藏的功能

list3.jsx

import react, { component } from 'react';
import proptypes from 'prop-types';
class list3 extends component {
 static proptypes = {
  hideconponent: proptypes.func.isrequired,
 }
 render() {
  return (
   <div>
    哈哈,我是list3
    <button onclick={this.props.hideconponent}>隐藏list3组件</button>
   </div>
  );
 }
}
export default list3;

app,jsx

import react, { component } from 'react';
import list3 from './components/list3';
export default class app extends component {
 constructor(...args) {
  super(...args);
  this.state = {
   isshowlist3: false,
  };
 }
 showconponent = () => {
  this.setstate({
   isshowlist3: true,
  });
 }
 hideconponent = () => {
  this.setstate({
   isshowlist3: false,
  });
 }
 render() {
  return (
   <div>
    <button onclick={this.showconponent}>显示lists组件</button>
    {
     this.state.isshowlist3 ?
      <list3 hideconponent={this.hideconponent} />
     :
     null
    }
   </div>
  );
 }
}

观察一下实现方法,可以发现它与传统回调函数的实现方法一样.而且setstate一般与回调函数均会成对出现,因为回调函数即是转换内部状态是的函数传统;

3. 跨级组件通信

层层组件传递props

例如a组件和b组件之间要进行通信,先找到a和b公共的父组件,a先向c组件通信,c组件通过props和b组件通信,此时c组件起的就是中间件的作用

使用context

context是一个全局变量,像是一个大容器,在任何地方都可以访问到,我们可以把要通信的信息放在context上,然后在其他组件中可以随意取到;

但是react官方不建议使用大量context,尽管他可以减少逐层传递,但是当组件结构复杂的时候,我们并不知道context是从哪里传过来的;而且context是一个全局变量,全局变量正是导致应用走向混乱的罪魁祸首.

使用context

下面例子中的组件关系: listitem是list的子组件,list是app的子组件

listitem.jsx

import react, { component } from 'react';
import proptypes from 'prop-types';
class listitem extends component {
 // 子组件声明自己要使用context
 static contexttypes = {
  color: proptypes.string,
 }
 static proptypes = {
  value: proptypes.string,
 }
 render() {
  const { value } = this.props;
  return (
   <li style={{ background: this.context.color }}>
    <span>{value}</span>
   </li>
  );
 }
}
export default listitem;

list.jsx

import listitem from './listitem';
class list extends component {
 // 父组件声明自己支持context
 static childcontexttypes = {
  color: proptypes.string,
 }
 static proptypes = {
  list: proptypes.array,
 }
 // 提供一个函数,用来返回相应的context对象
 getchildcontext() {
  return {
   color: 'red',
  };
 }
 render() {
  const { list } = this.props;
  return (
   <div>
    <ul>
     {
      list.map((entry, index) =>
       <listitem key={`list-${index}`} value={entry.text} />,
      )
     }
    </ul>
   </div>
  );
 }
}
export default list;

app.jsx

import react, { component } from 'react';
import list from './components/list';
const list = [
 {
  text: '题目一',
 },
 {
  text: '题目二',
 },
];
export default class app extends component {
 render() {
  return (
   <div>
    <list
     list={list}
    />
   </div>
  );
 }
}

4. 没有嵌套关系的组件通信

使用自定义事件机制

在componentdidmount事件中,如果组件挂载完成,再订阅事件;在组件卸载的时候,在componentwillunmount事件中取消事件的订阅;

以常用的发布/订阅模式举例,借用node.js events模块的浏览器版实现

使用自定义事件的方式

下面例子中的组件关系: list1和list2没有任何嵌套关系,app是他们的父组件;

实现这样一个功能: 点击list2中的一个按钮,改变list1中的信息显示

首先需要项目中安装events 包:

npm install events --save

在src下新建一个util目录里面建一个events.js

import { eventemitter } from 'events';
export default new eventemitter();

list1.jsx

import react, { component } from 'react';
import emitter from '../util/events';
class list extends component {
 constructor(props) {
  super(props);
  this.state = {
   message: 'list1',
  };
 }
 componentdidmount() {
  // 组件装载完成以后声明一个自定义事件
  this.eventemitter = emitter.addlistener('changemessage', (message) => {
   this.setstate({
    message,
   });
  });
 }
 componentwillunmount() {
  emitter.removelistener(this.eventemitter);
 }
 render() {
  return (
   <div>
    {this.state.message}
   </div>
  );
 }
}
export default list;

list2.jsx

import react, { component } from 'react';
import emitter from '../util/events';
class list2 extends component {
 handleclick = (message) => {
  emitter.emit('changemessage', message);
 };
 render() {
  return (
   <div>
    <button onclick={this.handleclick.bind(this, 'list2')}>点击我改变list1组件中显示信息</button>
   </div>
  );
 }
}

app.jsx

import react, { component } from 'react';
import list1 from './components/list1';
import list2 from './components/list2';
export default class app extends component {
 render() {
  return (
   <div>
    <list1 />
    <list2 />
   </div>
  );
 }
}

自定义事件是典型的发布订阅模式,通过向事件对象上添加监听器和触发事件来实现组件之间的通信

总结

  • 父组件向子组件通信: props
  • 子组件向父组件通信: 回调函数/自定义事件
  • 跨级组件通信: 层层组件传递props/context
  • 没有嵌套关系组件之间的通信: 自定义事件

在进行组件通信的时候,主要看业务的具体需求,选择最合适的;

当业务逻辑复杂到一定程度,就可以考虑引入mobx,redux等状态管理工具

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。

参考