随笔分类 -  React

摘要:action在到达store之前会经历一个中间件层,利用redux中间件机制,可以在action响应之前执行其他额外的业务逻辑。中间件指的是是action 与store的中间,是redux的中间件。 1.先安装 2.在index.js里创建store时配置redux-thunk。 要想使用中间件,需 阅读全文
posted @ 2018-08-07 15:12 哥哦狗子 阅读(2867) 评论(0) 推荐(0)
摘要:Redux是什么? 是专于状态管理的库 专于状态管理和react解耦 单一状态,单项数据流 核心概念 store state action reducer Redux工作流 react 要改变store里的数据,先要开发一个action,action会通过store.dispatch(action) 阅读全文
posted @ 2018-08-02 17:28 哥哦狗子 阅读(756) 评论(0) 推荐(0)