React 单向数据流

来源:互联网 发布:广东飞鱼网络 编辑:程序博客网 时间:2024/06/05 22:55

React 单向数据流
这里写图片描述

redux中目录结构:


Actions

  • 声明action

Components

  • 创建component
  • 组合子component与container
  • 接收container传过来的属性

Containers

  • 引用component、action
  • 将action与state dispatch到component的props上

Reducers

  • 引入action
  • 初始化state
  • 定义action需要完成的具体动作
  • 更新state

Sagas

  • 引入action
  • 监听特定action
  • 异步按指定顺序执行action或自定义方法

Store

  • 引入reducer与middleware
  • 导出配置

index.js

  • 引入component、configureStore、saga
  • 通过configureStore创建store,runSaga
  • Provider 中赋值store
  • 渲染组件
原创粉丝点击