这个dispatch属性是怎么获得的?
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
应该是作者把actions封装在key为dispatch.比如我就直接叫actions:
你觉得绑定在props下的名为dispatch应该是什么东西?
当你用React Redux的connect进行封装的时候,connect方法会把dispatch放到props中
当你的这个组件用redux中的方法connect连接后,例如这样
const mapStateToProps = (state) => { const { environment:{ legalData } }=state; return { legalData } } export default connect(mapStateToProps)(Justice) ;
此时,dispatch就可以作为props传入到这个组件当中了
这个和 react 无关
react
const {dispatch} = this.props;
这段代码你可以认为是这样:
const dispatch = this.props.dispatch;
那样写是 ES6 的简写形式。
应该是作者把actions封装在key为dispatch.
比如我就直接叫actions:
你觉得绑定在props下的名为dispatch应该是什么东西?
当你用React Redux的connect进行封装的时候,connect方法会把dispatch放到props中
当你的这个组件用redux中的方法connect连接后,例如这样
此时,dispatch就可以作为props传入到这个组件当中了
这个和
react
无关const {dispatch} = this.props;
这段代码你可以认为是这样:
const dispatch = this.props.dispatch;
那样写是 ES6 的简写形式。