React 组件间的通信示例
前言
从官网上也有介绍组件间如何通信,但不够详细,这里做个小结,方便对比和回顾
本文内容
处理组件之间的通信, 主要取决于组件之间的关系,因此我们划分为以下三种:
- 【父组件】向【子组件】传值;
- 【子组件】向【父组件】传值;
- 【组件a】向无关系【组件b】传值,一般为兄弟组件;
一、「父组件」向「子组件」传值
这是最普遍的用法,实现上也非常简单,主要是利用props来实现
// 父组件 import react from 'react'; import son from './components/son'; class father extends react.component { constructor(props) { // 这里要加super,否则会报错 super(props); this.state = { checked: true } } render() { return ( <son text="toggle me" checked={this.state.checked} /> ) } }
// 子组件 class son extends react.component { render() { // 接收来自父组件的参数 let checked = this.props.checked, text = this.props.text; return ( <label>{text}: <input type="checkbox" checked={checked} /></label> ) } }
多想一点:
如果组件的嵌套层次太多,那么从外到内的交流成本就会加深,通过 props 传值的优势就不明显,因此,我们还是要尽可能的编写结构清晰简单的组件关系, 既也要遵循组件独立原则,又要适当控制页面,不可能或极少可能会被单用的代码片,可不编写成一个子组件
二、「子组件」向「父组件」传值
我们知道,react的数据控制分为两种,为 props 和 state;其中,props 如上刚介绍过,它是父组件向子组件传值时作为保存参数的数据对象;而 state 是组件存放自身数据的数据对象。这两者最主要的区别就是,props属于父组件传给子组件的只读数据,在子组件中不能被修改,而state在自身组件中使用时,可以通过setstate来修改更新。
子组件向父组件传值,需要控制自己的state,并发起父组件的事件回调来通知父组件
// 父组件 import son from './components/son'; class father extends react.component { constructor(props) { super(props) this.state = { checked: false } } onchildchanged() { this.setstate({ checked: newstate }) } render() { let ischecked = this.state.checked ? 'yes' : 'no'; return ( <div> <span>are you checked: {ischecked }</span> <son text="toggle me" initialchecked={this.state.checked} callbackparent={this.onchildchanged.bind(this)} ></son> </div> ) } }
// 子组件 class son extends react.component { constructor(props) { super(props); this.state = { checked: this.props.initialchecked } } ontextchange() { let newstate = !this.state.check.checked; this.setstate({ checked: newstate }); // 注意,setstate 是一个异步方法,state值不会立即改变,回调时要传缓存的当前值, // 也可以利用传递一个函数(以上传的是对象),并传递prevstate参数来实现数据的同步更新 this.props.callbackparent(newstate); } render() { let text= this.props.text; let checked = this.state.checked; return ( <label>{text}: <input type="checkbox" checked={checked} onchange={this.ontextchange.bind(this)}></label> ) } }
多想一点:
- 同样应当避免深层次的组件嵌套
- 这里其实是依赖了props来传递事件的引用,并通过回调的方式来实现,在没有使用工具情况下,可以使用该办法
拓展一点:
在onchange 事件或者其他react事件中,你能获取以下信息:
- 「this」 指向你的组件
- 「一个参数」 一个, syntheticevent
我们知道,react对所有事件的管理都是自己封装实现的,html中的 onclick 被封装成了 onclick, onchange 被封装成了 onchange。从根本上来说,他们都是被绑定在body上的。
多个子组件回调同一个回调函数情况
父组件中大概率包含多个子组件,为节省和简洁代码,遵循 don't repeat yourself 原则,我们会让一个回调函数实现多个子组件的功能,或多个组件协作完成指定功能
import react from 'react'; import son from './components/son'; class father extends react.componnet { constructor(props) { super(props); this.state = { totalchecked: 0 } } onchildchangeed() { let newtotal = this.state.totalchecked + (new state ? 1 : -1 ); this.setstate({ totalchecked = this.state.totalchecked; }); } render() { return ( <div> <div>checked numbers: {this.state.totalchecked}</div> <son text="toggle me" initialchecked={this.state.checked} callbackparent={this.onchildchanged} /> <son text="toggle me too" initialchecked={this.state.checked} callbackparent={this.onchildchanged} /> <son text="add me" initialchecked={this.state.checked} callbackparent={this.onchildchanged} /> </div> ) } }
// 子组件 class son extends react.component { constructor(props) { super(props); this.state = { checked: this.props.initialchecked } } ontextchange() { let newstate = !this.state.checked; this.setstate({ checked: newstate }) // setstate异步方法问题,注意传值 this.props.callbackparent(newstate); } render() { let text = this.props.checked; let checked = this.state.checked; return { <label>{text}: <input type="checkbox" checked={checked} onchange={this.ontextchange.bind(this)} /></label> } } }
多想一点:
在本案例中,我们引用了三个 son 子组件, 每个 son 组件都独立工作互不干扰,该例中,增加了一个 totalchecked 来替代之前的 checked, 当组件触发ontextchange 后,触发父组件的回调函数使得父组件的值得以改变。
三、组件a和无关系组件b之间的通信
如果组件之间没有任何关系,或者组件嵌套的层次比较深,或者,你为了一些组件能够订阅,写入一些信号,不想让两个组件之间插入一个组件,而是让两个组件出于独立的关系。对于时间系统,有两个基本操作:
- 订阅: subscribe
- 监听: listen
并发送 send / 触发 trigger / 发布 publish / 发送 dispatch 通知那些想要的组件
1. event emitter/target/dispatcher
特点: 需要一个指定的订阅源
// to subscribe otherobiect.addeventlistener('clickevent', function() { alert('click!'); }) // to dispatch this.dispatchevent('clickevent');
2. publish / subscribe
特点: 触发的时候,不需要指定一个特定的源,使用全局对象广播的方式来处理事件
// to subscribe globalbroadcaster.subcribe('clickevent', function() { alert('cilck!'); }) // to publish globalbroadcaster.publish('clickevent');
这种方案还有一个插件可用, 即 pubsubjs;用法如下:
import pubsub from 'pubsub-js'; ... // to subscribe pubsub.subscribe('event', (msg, param) => { console.log(msg, param); }); // to publish pubsub.publish('event', param);
3. single
特点: 与 event emitter/target/dispatcher
类似,但是不要使用随机字符串作为事件触发的引用。触发事件的每一个对象都需要一个确切的名字,并且在触发的时候,也必须要指定确切的事件
// to subscribe otherobject.clicked.add(function() { alert('click'); }) // to dispatch this.clicked.dispatch();
react 团队使用的是:它基于 signals 模式,用起来相当不错。
事件订阅与取消
使用react事件的时候,必须关注以下两个方法:
- componentdidmount
- componentwillunmount
在 componentdidmount 事件中,等待组件挂载 mounted 完成,再订阅事件;订阅的事件需要在组件卸载 componentwillunmount 的时候取消事件的订阅。
因为组件的渲染和销毁是有 react 来控制的,我们不知道怎么引用他们,所以eventemitter 模式在处理事件的时候用处不大,pub/sub 模式就好用些,因为我们不需要知道引用在哪。
es6策略: yield and js-csp
es6中有一种传递信息的方式,使用生成函数 generators 和 yield 关键字,用法参考以下例子
import csp from 'js-csp'; function* list() { for(var i = 0; i< arguments.length; i++) { yield arguments[i]; } return "done"; } var o = list(1, 2, 3); var cur = o.next; while (!cur.done) { cur = o.next(); console.log(cur); }
结束语
数据在组件中应该以什么样的方式进行传递取决于组件之间存在什么样的关系和当时的业务场景需求,大家应该根据项目合理选择数据处理的方案,这很可能减少你大量的代码量和代码逻辑。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Oracle数据库备份及还原
下一篇: 留下我在面桌独自沉思