Redux: Data Flow

 20th August 2020 at 2:19pm

Redux 采用的是一种「严格的单向数据流」(strict unidirectional data flow)。

Redux 的数据流如下:

  1. 你的业务代码调用 store.dispatch(action)
  2. Redux store 调用你提供给它的 reducer 函数
  3. 根 reducer 整合它的多个子 reducer 的结果到同个 state tree 中
  4. Redux store 保存根 reducer 整合好的 state tree

Resources