随笔分类 -  redux

摘要:安装chrome扩展 安装redux-devtools-extension yarn add redux-devtools-extension --dev store.js import { composeWithDevTools } from 'redux-devtools-extension'; 阅读全文
posted @ 2020-01-08 05:16 空船 阅读(366) 评论(0) 推荐(0)
摘要:安装react-redux yarn add react-redux 引入Provider 传入store 类似context import {Provider} from 'react-redux' import store from '../store/store' render() { con 阅读全文
posted @ 2020-01-08 04:54 空船 阅读(438) 评论(0) 推荐(0)
摘要:安装redux redux-thunk yarn add redux redux-thunk 三个概念: store reducer action store createStore创建 getState()获取状态 dispatch(action)触发reducer更新 subscribe(()= 阅读全文
posted @ 2020-01-08 04:07 空船 阅读(189) 评论(0) 推荐(0)