使用react+redux实现弹出框案例( 二 )

  1. 因为使用 combineReducers 合并reducer的时候改变了state的结构所以我们需要在组件中去更改获取state的方式
// src/components/Count.jsconst mapStateProps = ({ counter }) => ({count: counter.count,a: '1'})// src/components/Modal.jsconst mapStateToProps = ({ modaler }) => {return {showState: modaler.show}}

推荐阅读