React Context:隐式传递数据

Posted sea-breeze

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React Context:隐式传递数据相关的知识,希望对你有一定的参考价值。

 

一 Context概述

 

Context provides a way to pass data through the component tree without having to pass props down manually at every level.

 

二 项目结构

 

技术分享图片

 

三 代码

 

1 theme-context.js

 

import React from ‘react‘;

// 主题数据
export const themes = {
    gray: {
        background: ‘gray‘,
    },
    gold: {
        background: ‘gold‘,
    },
};

// 创建上下文对象,参数将作为上下文对象的默认值
export const ThemeContext = React.createContext(
    themes.gray // default value
);

 

2 themed-button.js

 

import React from ‘react‘;
import { ThemeContext } from ‘./theme-context‘;

class ThemedButton extends React.Component {
    render() {
        let props = this.props;
        let theme = this.context;
        return (
            <button
                {...props}
                style={{...theme}} />
        )
    }
}

// 给ThemedButton类绑定上下文对象:ThemedButton类的对象的context属性,等于上下文对象的默认值。
ThemedButton.contextType = ThemeContext;

export default ThemedButton;

 

3 app.js

 

import React, { Fragment } from ‘react‘;
import { ThemeContext, themes } from ‘./theme-context‘;
import ThemedButton from ‘./themed-button‘;

// An intermediate component that uses the ThemedButton
// 工具栏组件(中间件)
function Toolbar(props) {
  return (
    <ThemedButton onClick={props.changeTheme}>
      改变上下文对象
    </ThemedButton>
  );
}

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      theme: themes.gray
    };
    this.toggleTheme = () => {
      this.setState(state => ({
        theme: state.theme === themes.gray ? themes.gold : themes.gray
      }));
    }
  }

  render() {
    return (
      <Fragment>
        {/* 在Provider中,使用Provider提供的值 */}
        <ThemeContext.Provider value={this.state.theme}>
          <Toolbar changeTheme={this.toggleTheme} />
        </ThemeContext.Provider>
        {/* 不在Provider中,使用上下文对象的默认值 */}
        <section>
          <ThemedButton />
        </section>
      </Fragment>
    );
  }
}

export default App;

 

4 index.js

 

import React from ‘react‘;
import ReactDOM from ‘react-dom‘;
import App from ‘./App‘;

ReactDOM.render(<App />, document.getElementById(‘root‘));

 

四 运行效果

 

1 初始化

 

技术分享图片

 

2 点击按钮

 

技术分享图片

 

以上是关于React Context:隐式传递数据的主要内容,如果未能解决你的问题,请参考以下文章

React的Context对象解决props传递数据的烦恼!

React Context 和 Provider 数据没有按预期传递

React中的数据传递----上下文(Context)

React context api,将数据从孩子传递给父母

React之使用Context跨组件树传递数据

React Context用法总结