redux总结connect使用装饰器react hooks - redux
connect使用connect([mapStateToProps], [mapDispatchToProps], [mergeProps], [options])示例connect(mapState,null)当不传递第二个参数(或为null)时,可以直接在当前组件的this.props.dispatch拿到dispatch方法function mapStateToProps(state) { return { todos: state.todos }}export default