React中元件通訊的幾種方式

funnycoderstar發表於2017-12-12

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等狀態管理工具

參考

相關文章