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