catspeake
可能是你的action没有connect到组件上,没有把这个方法传过来。1.参考我写的一个方案1234@connect( state => state, dispatch => bindActionCreators(action, dispatch))2.根据redux文档的方案12345678910// 哪些 action 创建函数是我们想要通过 props 获取的看function mapDispatchToProps(dispatch) { return { onIncrement: () => dispatch(increment()) };} export default connect( mapDispatchToProps)(Counter);