摘要: 1. 创建 react 项目 npx create-react-app my-app 2. src 目录下删除 除了 index.js index.css app.js 的文件 3. 引入 styled-components 样式组件 yarn add styled-components 4. 修改 阅读全文
posted @ 2019-12-03 17:30 zonehoo 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 react-redux yarn add react-redux 2. react-redux 编写 TodoList 使所有子组件 都能使用 store #index.js import React from 'react'; import ReactDOM from 'react-d 阅读全文
posted @ 2019-12-03 16:13 zonehoo 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 1. redux 数据流程图 View 会派发一个 Action Action 通过 Dispatch 方法派发给 Store Store 接收到 Action 连同之前的 State 发给 Reducer 生成新的 State Redux 的 中间件指的是 Action 和 Store 之间 中间 阅读全文
posted @ 2019-12-03 13:55 zonehoo 阅读(340) 评论(0) 推荐(0) 编辑