在我的 reactjs-universal 组件中,我写了这个:
const mapStateToProps = (store) => {
return {
cars: store
}
}
export default connect(mapStateToProps)(SearchForm)
在同一个组件中,我想分派一个动作,例如:
store.dispatch({type: 'SHOWDETAIL', data: 'hi'});
当它运行时,我得到:
Uncaught TypeError: _create2.default.dispatch is not a function
是否可以在我的组件中以某种方式获取对商店的引用,以便我可以调度操作?