React系列——React Context

40次阅读

共计 3614 个字符,预计需要花费 10 分钟才能阅读完成。

前言
我们先看一下 React 中,父子组件通信的机制,父子组件的通信是通过 props 进行数据的传递:
1、父组件向子组件传递数据 (状态) 时,是在调用子组件的时候通过参数传递给子组件,子组件通过 this.props 进行接收;2、子组件如果更改父组件的一些属性,则是通过父组件定义的方法来传递给子组件,子组件调用更改;3、如果父组件想要更改子组件的一些状态时,通过 ref 进行标记,可以获取子组件的所有信息,从而调用子组件的方法和值;
但是,如果层级很多呢,是否需要多个 props 进行逐层的传递?答案是否定的,React 的 advanced(高级)中指出了 context,优雅的解决这个问题。
初识 Context
我们知道,在 JS 中 context 指的是函数的执行上下文,函数被调用时,this 指向谁,谁就是当前的执行上下文;
react 中的 context 是什么呢?官方文档给出:
Context 通过组件树提供了一个传递数据的方法,从而避免了在每一个层级手动的传递 props 属性。
文档也没具体给出 context 到底是什么,而是告诉我们 context 能干什么,也就是说,如果我们不想通过 props 实现组件树的逐层传递数据,则可以使用 context 实现跨层级进行数据传递!
如何使用 Context
context api 给出三个概念:React.createContext()、Provider、Consumer;
React.createContext()
这个方法用来创建 context 对象,并包含 Provider、Consumer 两个组件 <Provider />、<Consumer />

const {Provider, Consumer} = React.createContext();

Provider
数据的生产者,通过 value 属性接收存储的公共状态,来传递给子组件或后代组件

eg:

<Provider value={/* some value */}>
Consumer
数据的消费者,通过订阅 Provider 传入的 context 的值,来实时更新当前组件的状态

eg:

<Consumer>
{value => /* render something based on the context value */}
</Consumer>

值得一提的是每当 Provider 的值发生改变时, 作为 Provider 后代的所有 Consumers 都会重新渲染
props 单向数据流动:

如果觉得 Props 传递数据很繁琐,可以采用 context, 进行跨组件传递数据

再最外层的组件上,通过生产者 Provider 组件进行包裹,并存储共享数据到 value 中,当然可以是任何数据类型。后带需要用到共享数据的组件均可通过 Consumer 进行数据获取。
与旧版本比较
新版的 context 是即 react16.3 以后进行升级的,但是 16.3 以前的 context 却不是那么好用了,同时它还被赋予“实验性”帽子的称号。
旧版本被赋予生产者和消费者的概念:
对于父组件来说,也就是生产者,需要声明 childContextTypes 对象,来提供给子组件需要用到的公共数据;
其次,还需要实例化 getChildContext 方法,返回一个纯对象,一定要注意的是父组件在 getChildContext 方法中定义数据的时候,一定要先在 childContextTypes 中进行声明,否则会报错;
用代码描述是:
父组件:

// 父组件声明 context 数据
childContextTypes = {
orderVal: PropTypes.string,
changeVal: PropTypes.func
};

// 实例化 getChildContext 方法,返回一个纯对象
getChildContext() {
return {
orderVal: this.state.orderVal
}
};

子组件:

// 子组件则声明需要使用的 Context 属性
static contextTypes = {
orderVal: PropTypes.string
};

// 通过 this.context 获取父组件的属性
render(){
const {orderVal} = this.context;
return (
<div>{orderVal}</div>
)
}

如果某个组件更改了父组件的某个属性值,那么父组件将会重新 render 组件树,如果期间有一个子组件没有用到 context 中的这个属性,并定义了 shouldComponentUpdate,那和这个子组件的子孙组件就不会重新 render,这样就会很危险,而新版本的 context api 却弥补了这个问题,即使其中的某个组件没有数据更新,也会影响到子孙组件,就是通过一个 Provider 来支持多个 Consumer 子组件的数据传递;
解析 React-redux 中的 context
1) 众所周知,react-redux 是链接 react、redux 的桥梁,我们来解剖一下到底 react-redux 是怎么搭这座桥梁的;
用 redux 来实现数据的传递:

那么,使用 Redux 不是不可以,只不过用起来着实麻烦,需要一直订阅 store 里的数据,每次都需要写一遍,为了方便,Redux 的作者封装了 React 专用的库 react-redux;

可见,react-redux 实际上是通过 Provider 组件和 connect 方法进行连接 react 和 redux, 那么他们到底本质上就是通过 Context 来传递数据

React-router 中的 context
同样,我们来看一下 React-router 中是怎么用 context 的
看一下 Router 组件的部分代码片段,react-router-dom 用的还是 react-router3 版本的 Router 组件,其中的 context 采用也是旧版的写法,以后可能会升级!
var Router = function (_React$Component) {

// Router 组件扩展一个 getChildContext 方法,为子组件提供一个带有 router 属性的 context
// 监听 history,history 发生变化,并重新对 route 进行赋值
Router.prototype.getChildContext = function getChildContext() {
return {
router: _extends({}, this.context.router, {
history: this.props.history,
route: {
location: this.props.history.location,
match: this.state.match
}
})
};
};

Router.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {
warning(this.props.history === nextProps.history, “You cannot change <Router history>”);
};

Router.prototype.render = function render() {
var children = this.props.children;

return children ? React.Children.only(children) : null;
};

return Router;
}(React.Component);

Router.propTypes = {
history: PropTypes.object.isRequired,
children: PropTypes.node
};

Router.contextTypes = {
router: PropTypes.object
};
Router.childContextTypes = {
router: PropTypes.object.isRequired
};

export default Router;
同样,Route 组件、Link 组件等,都是通过 Context 来构建的,通过 context 来共享 router,并匹配当前路由的路径,来动态加载子组件;

但是,路由只会给子组件共享 context, 那如果是子孙组件,怎么办呢?也给他包一层 router, 这样不也就能共享 context 了吗?那么我们怎么在包一层呢?
答案:withRouter
withRouter 用来修饰的这个 UI 组件,会在外层添加一层 Route, 这样就会共享 context 的状态了,所以无论我们在什么地方来进行路由切换,都需要包一层 withRouter 的原因了!
context 需谨慎使用
虽说新版的 context 已经很好用了,但是官方还是没有大面积的去推广,可能有一些其他的问题, 比如多个 context 的管理,但是我们还是很看好,他的未来,毕竟 react-redux、react-router 还在用

正文完
 0