Redux 示例
2021-09-16 09:50 更新
示例
Redux 源码 中同时包含一些示例。
复制代码时注意
如果你把 Redux 示例代码复制到其它目录,可以删除位于
webpack.config.js
文件尾部 “You can safely delete these lines in your project.” 注释后的代码。
Counter 计数器示例
运行 Counter 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/counter
npm install
npm start
open http://localhost:3000/
这个示例包含:
- 基本的 Redux 应用开发流程;
- 测试代码。
TodoMVC 示例
运行 TodoMVC 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/todomvc
npm install
npm start
open http://localhost:3000/
这个示例包含:
- Redux 中使用两个 reducer 的方法;
- 嵌套数据更新;
- 测试代码。
Todos with Undo 示例
运行 todos-with-undo 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/todos-with-undo
npm install
npm start
open http://localhost:3000/
这个示例包含:
- Redux 中使用两个 reducer 的方法;
- 使用 redux-undo 在 Redux 中实现撤销/重做功能。
异步
运行 Async 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/async
npm install
npm start
open http://localhost:3000/
这个示例包含:
- 使用 redux-thunk 处理简单的异步开发流程;
- 缓存服务器响应数据,并在获取数据过程中显示加载进度条;
- 缓存数据过期方法。
Universal 示例
运行 Universal 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/universal
npm install
npm start
open http://localhost:3000/
这个示例包含:
- 使用 Redux 和 React 的 Universal rendering 库;
- 经由异步得到输入的内容,从而提前获取 state ;
- 从服务器端向客户端传递 state 。
Real World 示例
运行 Real World 示例:
git clone https://github.com/rackt/redux.git
cd redux/examples/real-world
npm install
npm start
open http://localhost:3000/
这个示例包含:
- 实际应用中的 Redux 的异步处理;
- 使用 normalized 结果集来保存并缓存数据;
- 用于 API 请求的自定义 middleware ;
- 缓存服务器响应数据,并在获取数据过程中显示加载进度条;
- 分页器;
- 路由。
更多
参考 Awesome Redux 获取更多示例。
以上内容是否对您有帮助:
← Redux 生态
更多建议: