结合具体场景,聊聊 React 的状态管理方案 - 图1

1. 引子

虽然 React 的状态管理是一个老生常谈的问题,网上和社区中也能搜到相当多的资料。这里还是想梳理下从我接触 React 开始到现在对状态管理的一些感想。
所有的新技术的出现和流行都是为了解决特定的场景问题,这里也会以一个非常简单的例子作为我们故事的开始。
有这样一个需求,我们需要在界面上展示某个商品的信息,可能我们会这样实现:

  1. import React, { PureComponent } from 'react';
  2. export default class ProductInfo extends PureComponent {
  3. constructor(props) {
  4. super(props);
  5. this.state = {
  6. data: {
  7. sku: '',
  8. desc: '',
  9. },
  10. };
  11. }
  12. componentDidMount() {
  13. fetch('url', { id: this.props.id })
  14. .then(resp => resp.json())
  15. .then(data => this.setState({ data }));
  16. }
  17. render() {
  18. const { sku } = this.state.data;
  19. return (
  20. {sku}
  21. );
  22. }
  23. }

上述的场景虽然非常简单,但是在我们实际的需求开发中非常常见,采用上述的方式也能很好地解决这一类问题。
我们把场景变得稍微复杂一点,假如界面上有两个部分都需要展示商品的信息,只是展示的商品的属性不同而已,怎么处理了?我们也可以像上面那样再写一个类似的组件,但是问题是我们重复获取了同一个商品的信息,为了避免重复获取数据,那么我们就需要在两个组件之间共享商品信息。

2. props 解决数据共享

通过 props 解决数据共享问题,本质上是将数据获取的逻辑放到组件的公共父组件中。代码可能是这样的:

  1. import React, { PureComponent } from 'react';
  2. export default class App extends PureComponent {
  3. constructor(props) {
  4. super(props);
  5. this.state = {
  6. data: {
  7. sku: '',
  8. desc: '',
  9. },
  10. };
  11. }
  12. componentDidMount() {
  13. fetch('url', { id: this.props.id })
  14. .then(resp => resp.json())
  15. .then(data => this.setState({ data }));
  16. }
  17. render() {
  18. return (
  19. );
  20. }
  21. }
  22. function ProductInfoOne({ data }) {
  23. const { sku } = data;
  24. return {sku}
  25. ;
  26. }
  27. function ProductInfoTwo({ data }) {
  28. const { desc } = data;
  29. return {desc}
  30. ;
  31. }

对于这种组件嵌套层次只有 1、2 层的场景,通过将数据获取和存储的逻辑上移到公共的父组件就可以很好地解决。
但是如果界面呈现更加复杂一点,比如 ProductInfoOne 的子组件中也需要呈现商品的信息,我们可能会想到继续通过 props 向下传递数据,问题是随着嵌套的层次越来越深,数据需要从最外层一直传递到最里层,整个代码的可读性和维护性会变差。我们希望打破数据「层层传递」而子组件也能取到父辈组件中的数据。

3. Context API

React 16.3 的版本引入了新的 Context API,Context API 本身就是为了解决嵌套层次比较深的场景中数据传递的问题,看起来非常适合解决我们上面提到的问题。我们尝试使用 Context API 来解决我们的问题:

  1. // context.js
  2. const ProductContext = React.createContext({
  3. sku: '',
  4. desc: '',
  5. });
  6. export default ProductContext;
  7. // App.js
  8. import React, { PureComponent } from 'react';
  9. import ProductContext from './context';
  10. const Provider = ProductContext.Provider;
  11. export default class App extends PureComponent {
  12. constructor(props) {
  13. super(props);
  14. this.state = {
  15. data: {
  16. sku: '',
  17. desc: '',
  18. },
  19. };
  20. }
  21. componentDidMount() {
  22. fetch('url', { id: this.props.id })
  23. .then(resp => resp.json())
  24. .then(data => this.setState({ data }));
  25. }
  26. render() {
  27. return (
  28. );
  29. }
  30. }
  31. // ProductInfoOne.js
  32. import React, { PureComponent } from 'react';
  33. import ProductContext from './context';
  34. export default class ProductInfoOne extends PureComponent {
  35. static contextType = ProductContext;
  36. render() {
  37. const { sku } = this.context;
  38. return {sku}
  39. ;
  40. }
  41. }
  42. // ProductInfoTwo.js
  43. import React, { PureComponent } from 'react';
  44. import ProductContext from './context';
  45. export default class ProductInfoTwo extends PureComponent {
  46. static contextType = ProductContext;
  47. render() {
  48. const { desc } = this.context;
  49. return {desc}
  50. ;
  51. }
  52. }

看起来一切都很美好,到目前为止我们也只是使用了 React 库本身的功能,并没有引入任何第三方的库,实际上对于这类比较简单的场景,使用以上的方式来解决确实是最直接、简单的方案。
现实中的需求往往要稍微复杂点,上述的几个场景中我们偏重于信息的呈现,而真实场景中我们避免不了一些交互的操作,比如我们需要在呈现商品信息的同时还需要可以编辑商品的信息,由于 ProductInfoOne、ProductInfoTwo 是受控组件,并且数据源在 App 组件中,为了实现数据的修改,我们可能通过 Context API 传递修改数据的「回调函数」。
上述的几个场景中我们偏重于有嵌套关系的组件之间数据的共享,如果场景再复杂一点,假设平行组件之间需要共享数据,例如和 App 没有父子关系的 App1 组件也需要呈现商品信息,怎么办,看起来 Conext API 也是束手无策。

4. Redux

终于到了 Redux,相信很多读者觉得啰里啰嗦,但是本着技术方案是为了解决特定问题的原则,还是觉得有必要做一些铺垫,如果你的问题场景没有复杂到 React 本身没有太好的解决方式的地步,建议也不要引入额外的技术(有更好的解决方案除外),包括 Redux。
Redux 确实是很强大,目前在 React 状态管理中也还是最活跃和使用最广的解决方案。这里还是引用一张图(图片来源)来简单说明下 Redux 解决问题的思路:
结合具体场景,聊聊 React 的状态管理方案 - 图2
这里不想讲太多 Redux 的概念和原理,网上也是一大推资料,相信很多人也对 Redux 非常熟悉了。先看看采用 Redux 解决我们上述问题,代码大概是这样的(只列出部分重点代码):

  1. // store.js
  2. import { createStore } from 'redux';
  3. import reducer from './reducer';
  4. const store = createStore(reducer);
  5. export default store;
  6. // reducer.js
  7. import * as actions from './actions';
  8. import { combineReducers } from 'redux';
  9. function ProductInfo(state = {}, action) {
  10. switch (action.type) {
  11. case actions.SET_SKU: {
  12. return { ...state, sku: action.sku };
  13. }
  14. case actions.SET_DESC: {
  15. return { ...state, desc: action.desc };
  16. }
  17. case actions.SET_DATA: {
  18. return { ...state, ...action.data };
  19. }
  20. default: {
  21. return state;
  22. }
  23. }
  24. }
  25. const reducer = combineReducers({
  26. ProductInfo,
  27. });
  28. export default reducer;
  29. // action.js
  30. export const SET_SKU = 'SET_SKU';
  31. export const SET_DESC = 'SET_DESC';
  32. export const SET_DATA = 'SET_DATA';
  33. export function setSku(sku) {
  34. return {
  35. type: SET_SKU,
  36. sku,
  37. };
  38. }
  39. export function setDesc(desc) {
  40. return {
  41. type: SET_DESC,
  42. desc,
  43. };
  44. }
  45. export function setData(data) {
  46. return {
  47. type: SET_DESC,
  48. data,
  49. };
  50. }
  51. // App.js
  52. import React, { PureComponent } from 'react';
  53. import { Provider } from 'react-redux';
  54. import store from './store';
  55. import * as actions from './actions';
  56. class App extends PureComponent {
  57. componentDidMount() {
  58. fetch('url', { id: this.props.id })
  59. .then(resp => resp.json())
  60. .then(data => this.props.dispatch(actions.setData(data)));
  61. }
  62. render() {
  63. return (
  64. );
  65. }
  66. }
  67. function mapStateToProps() {
  68. return {
  69. };
  70. }
  71. function mapDispatchToProps(dispatch) {
  72. return {
  73. dispatch,
  74. };
  75. }
  76. export default connect(mapStateToProps, mapDispatchToProps)(App);
  77. // ProductInfoOne.js
  78. import React, { PureComponent } from 'react';
  79. import { connect } from 'react-redux';
  80. import * as actions from './actions';
  81. class ProductInfoOne extends PureComponent {
  82. onEditSku = (sku) => {
  83. this.props.dispatch(actions.setSku(sku));
  84. };
  85. render() {
  86. const { sku } = this.props.data;
  87. return (
  88. {sku}
  89. );
  90. }
  91. }
  92. function mapStateToProps(state) {
  93. return {
  94. data: state.ProductInfo,
  95. };
  96. }
  97. function mapDispatchToProps(dispatch) {
  98. return {
  99. dispatch,
  100. };
  101. }
  102. export default connect(mapStateToProps, mapDispatchToProps)(ProductInfoOne);
  103. // ProductInfoTwo.js
  104. import React, { PureComponent } from 'react';
  105. import { connect } from 'react-redux';
  106. import * as actions from './actions';
  107. class ProductInfoTwo extends PureComponent {
  108. onEditDesc = (desc) => {
  109. this.props.dispatch(actions.setDesc(desc));
  110. };
  111. render() {
  112. const { desc } = this.props.data;
  113. return (
  114. {desc}
  115. );
  116. }
  117. }
  118. function mapStateToProps(state) {
  119. return {
  120. data: state.ProductInfo,
  121. };
  122. }
  123. function mapDispatchToProps(dispatch) {
  124. return {
  125. dispatch,
  126. };
  127. }
  128. export default connect(mapStateToProps, mapDispatchToProps)(ProductInfoTwo);

Redux 确实能够解决我们上面提到的问题,从代码和 Redux 的原理中我们也可以知道,Redux 做了很多概念的抽象和分层,store 专门负责数据的存储,action 用于描述数据修改的动作,reducer 用于修改数据。咋一看,Redux 使我们的代码变得更加复杂了,但是它抽象出来的这些概念和一些强制的规定,会让数据的共享和修改变得有迹可循,这种约定的规则,在多人协助开发的大型项目中,会让代码的逻辑更加清晰、可维护性更好。
但是,Redux 被大家诟病的地方也很多,网上也有越来越多对 Redux 批判的声音,暂且不谈技术的学习成本,笔者在使用过程中觉得有几点让人抓狂的地方:

  • 对于「简单」系统来说太啰嗦了,笔者所负责的系统是偏向中后台系统,系统本身也不复杂,并且是一个人负责开发,为了修改某个数据,需要修改多个文件;过一段时间再去看某个数据变动的逻辑,需要将整个数据变动的流程过一遍,不够直接。尤其是需要处理一些异步操作时,还需要引入一些副作用处理库,例如 redux-thunk、redux-saga、redux-observables,这样反而会导致一个简单的系统更加复杂,有一种「杀鸡焉用牛刀」的感觉。
  • 数据缓存问题,Redux 中 store 是全局唯一的对象,不会随着某个组件的消亡而消亡。这个问题需要辩证来看,在需要缓存数据的场景中,Redux 天然就支持;但是在某些不需要缓存的场景中,可能会带来非常严重的后果,比如笔者负责开发的一个商品交易页面,每次跳转到该页面时会获取商品的信息并存到 store 中,如果某次获取商品信息的部分接口失败,那么会导致 store 中存放的部分商品信息是缓存的上次购买的商品信息,这样会导致界面呈现的商品信息是错误的。对于这种场景我们还需要额外有一段代码去处理 store 中缓存的数据,要么在组件销毁的时候清空对应的缓存,要么在获取数据前或者获取数据失败的函数中处理 store 中的缓存。

那么有没有一些更加轻量级的状态管理库了?

5. MobX

Mobx 从 2016 年开始发布第一个版本,到现在短短两年多的时间,发展也是非常迅速,受到越来越多人的关注。MobX 的实现思路非常简单直接,类似于 Vue 中的响应式的原理,其实质可以简单理解为观察者模式,数据是被观察的对象,「响应」是观察者,响应可以是计算值或者函数,当数据发生变化时,就会通知「响应」执行。借用一张网上的图(图片来源)描述下原理:
结合具体场景,聊聊 React 的状态管理方案 - 图3
Mobx 我理解的最大的好处是简单、直接,数据发生变化,那么界面就重新渲染,在 React 中使用时,我们甚至不需要关注 React 中的 state,我们看下用 MobX 怎么解决我们上面的问题:

  1. // store.js
  2. import { observable } from 'mobx';
  3. const store = observable({
  4. sku: '',
  5. desc: '',
  6. });
  7. export default store;
  8. // App.js
  9. import React, { PureComponent } from 'react';
  10. import store from './store.js';
  11. export default class App extends PureComponent {
  12. componentDidMount() {
  13. fetch('url', { id: this.props.id })
  14. .then(resp => resp.json())
  15. .then(data => Object.assign(store, data));
  16. }
  17. render() {
  18. return (
  19. );
  20. }
  21. }
  22. // ProductInfoOne.js
  23. import React, { PureComponent } from 'react';
  24. import { action } from 'mobx';
  25. import { observer } from 'mobx-react';
  26. import store from './store';
  27. @observer
  28. class ProductInfoOne extends PureComponent {
  29. @action
  30. onEditSku = (sku) => {
  31. store.sku = sku;
  32. };
  33. render() {
  34. const { sku } = store;
  35. return (
  36. {sku}
  37. );
  38. }
  39. }
  40. export default ProductInfoOne;
  41. // ProductInfoTwo.js
  42. import React, { PureComponent } from 'react';
  43. import { action } from 'mobx';
  44. import { observer } from 'mobx-react';
  45. import store from './store';
  46. @observer
  47. class ProductInfoTwo extends PureComponent {
  48. @action
  49. onEditDesc = (desc) => {
  50. store.desc = desc;
  51. };
  52. render() {
  53. const { desc } = store;
  54. return (
  55. {desc}
  56. );
  57. }
  58. }
  59. export default ProductInfoTwo;

稍微解释下用到的新的名词,observable 或者 @observable 表示声明一个可被观察的对象,@observer 标识观察者,其本质是将组件中的 render 方法用 autorun 包装了下,@action 描述这是一个修改数据的动作,这个注解是可选的,也就是不用也是可以的,但是官方建议使用,这样代码逻辑更清晰、底层也会做一些性能优化、并且在调试的时候结合调试工具能够提供有用的信息。
我们可以对比下 Redux 的方案,使用 MobX 后代码大大减少,并且数据流动和修改的逻辑更加直接和清晰。声明一个可被观察的对象,使用 @observer 将组件中的 render 函数变成观察者,数据修改直接修改对象的属性,我们需要做的就是这些。
但是从中也可以看到,Mobx 的数据修改说的好听点是「灵活」,不好听点是「随意」,好在社区有一些其他的库来优化这个问题,比如 mobx-state-tree 将 action 在模型定义的时候就确定好,将修改数据的动作集中在一个地方管理。不过相对于 Redux 而言,Mobx 还是灵活很多,它没有太多的约束和规则,在少量开发人员或者小型项目中,会非常地自由和高效,但是随着项目的复杂度和开发人员的增加,这种「无约束」反而可能会带来后续高昂的维护成本,反之 Redux 的「约束」会确保不同的人写出来的代码几乎是一致的,因为你必须按照它约定的规则来开发,代码的一致性和可维护性也会更好。

6. GraphQL

前面提到的不管是 Redux 还是 MobX, 两者都是侧重于管理数据,说的更明白点就是怎样存储、更新数据,但是数据是从哪里来的,它们是不关注的。那么未来有没有一种新的思路来管理数据了,GraphQL 其实提出了一种新的思路。
我们开发一个组件或者前端系统的时候,有一部分的数据是来自于后台的,比如上面场景中的商品信息,有一部分是来自于前台的,比如对话框是否弹出的状态。GraphQL 将远程的数据和本地的数据进行了统一,让开发者感觉到所有的数据都是查询出来的,至于是从服务端查询还是从本地查询,开发人员不需要关注。
这里不讲解 GraphQL 的具体原理和使用,大家有兴趣可以去查看官网的资料。我们看看如果采用 GraphQL 来解决我们上面的问题,代码会是怎么样的?

  1. // client.js
  2. import ApolloClient from 'apollo-boost';
  3. const client = new ApolloClient({
  4. uri: 'http://localhost:3011/graphql/productinfo'
  5. });
  6. export default client;
  7. // app.js
  8. import React from 'react';
  9. import { ApolloProvider, Query, Mutation } from 'react-apollo';
  10. import gql from 'graphql-tag';
  11. import client from './index';
  12. import ProductInfoOne from './ProductInfoOne';
  13. import ProductInfoTwo from './ProductInfoTwo';
  14. const GET_PRODUCT_INFO = gql`
  15. query ProductInfo($id: Int) {
  16. productInfo(id: $id){
  17. id
  18. sku
  19. desc
  20. }
  21. }
  22. `;
  23. export default class App extends React.PureComponent {
  24. constructor(props) {
  25. super(props);
  26. this.state = {
  27. id: 1,
  28. };
  29. }
  30. render() {
  31. return (
  32. {({ loading, error, data }) => {
  33. if (loading) return 'loading...';
  34. if (error) return 'error...';
  35. if (data) {
  36. return (
  37. );
  38. }
  39. return null;
  40. }}
  41. );
  42. }
  43. }
  44. // ProductInfoOne.js
  45. import React from 'react';
  46. import { Mutation } from 'react-apollo';
  47. import gql from 'graphql-tag';
  48. const SET_SKU = gql`
  49. mutation SetSku($id: Int, $sku: String){
  50. setSku(id: $id, sku: $sku) {
  51. id
  52. sku
  53. desc
  54. }
  55. }
  56. `;
  57. export default class ProductInfoOne extends React.PureComponent {
  58. render() {
  59. const { id, sku } = this.props.data;
  60. return (
  61. {sku}
  62. {(setSku) => (
  63. { setSku({ variables: { id: id, sku: 'new sku' } }) }}>修改 sku
  64. )}
  65. );
  66. }
  67. }
  68. // ProductInfoTwo.js
  69. import React from 'react';
  70. import { Mutation } from 'react-apollo';
  71. import gql from 'graphql-tag';
  72. const SET_DESC = gql`
  73. mutation SetDesc($id: Int, $desc: String){
  74. setDesc(id: $id, desc: $desc) {
  75. id
  76. sku
  77. desc
  78. }
  79. }
  80. `;
  81. export default class ProductInfoTwo extends React.PureComponent {
  82. render() {
  83. const { id, desc } = this.props.data;
  84. return (
  85. {desc}
  86. {(setDesc) => (
  87. { setDesc({ variables: { id: id, desc: 'new desc' } }) }}>修改 desc
  88. )}
  89. );
  90. }
  91. }

我们可以看到,GraphQL 将数据封装成 Query 的 GraphQL 语句,将数据的更新封装成了 Mutation 的 GraphQL 语句,对开发者来讲,我需要数据,所以我需要一个 Query 的查询,我需要更新数据,所以我需要一个 Mutation 的动作,数据既可以来自于远端服务器也可以来自于本地。
使用 GraphQL 最大的问题是,需要服务器端支持 GraphQL 的接口,才能真正发挥它的威力,虽然现在主流的几种 Web 服务器端语言,比如 Java、PHP、Python、JavaScript,均有对应的实现版本,但是将已有的系统整改为支持 GraphQL,成本也是非常大的;并且 GraphQL 的学习成本也不低。
但是 GraphQL 确实相比于传统的状态管理方案,提供了新的思路。我们和后台人员制定接口时,总是会有一些模糊有争议的灰色地带,比如页面上要展示一个列表,前端程序员的思维是表格中的一行是一个整体,后台应该返回一个数组,数组中的每个元素对应的就是表格中的一行,但是后端程序员可能会从数据模型设计上区分动态数据和静态数据,前台应该分别获取动态数据和静态数据,然后再拼装成一行数据。后端程序员的思维是我有什么,是生产者的视角;前端程序员的思维是我需要什么,是消费者的视角。但是 GraphQL 会强迫后台人员在开发接口的时候从消费者的视角来制定前后台交互的数据,因为 GraphQL 中的查询参数往往是根据界面呈现推导出来的。这样对前端而言,会减少一部分和后台制定接口的纠纷,同时也会把一部分的工作「转嫁」到后台。

7. 总结