摘要: 简述 redux-toolkit是 Redux 官方强烈推荐,开箱即用的一个高效的 Redux 开发工具集,本质是对redux的封装,方便我们写reducer、action creator和继承类似thunk的中间件。 安装 # NPM npm install @reduxjs/toolkit # 阅读全文
posted @ 2023-02-13 17:58 艾尔夏尔-Layton 阅读(427) 评论(0) 推荐(0) 编辑
摘要: redux产生的历史背景 当我们的前端系统变得复杂,包含众多子组件,特别是包含很长一条子组件链时。我们的state管理就会非常繁琐,例如如下图,如果Child11需要用到App里的state,那么App里的state就要通过props一层层传递下去,尽管Child2到5不需要用到,但props还是要 阅读全文
posted @ 2023-02-13 15:32 艾尔夏尔-Layton 阅读(30) 评论(0) 推荐(0) 编辑