我正在使用redux开发通用反应应用程序。在我的动作创作者中,我将数据发送到商店。
在ComponentDidMount函数调度函数中的是好的,但是当我想将它传递给渲染函数中的组件时它给出了错误无法读取未定义的属性'dispatch' 我如何将调度函数传递给组件?
货柜代码:
class DealContainer extends React.Component {
static readyOnActions(dispatch, params) {
return Promise.all([
dispatch(DealsActions.fetchDealData(params.id)),
dispatch(SubmitActions.fetchSubmitInitialData()),
]);
}
componentDidMount() {
DealContainer.readyOnActions(this.props.dispatch,this.props.params);
}
render() {
return(
<MyComponent
changeStoreFunction = {this.props.dispatch(SubmitActions.changeUserId)}
/>)
}
const mapStateToProps = (state, ownProps) => {
return {
dealData: state.dealData,
routing: ownProps.location.query,
submitInitialData: state.submitInitialData,
id: ownProps.params.id,
mapInfo: state.mapInfo,
areaList: state.areaList,
}
};
DealContainer.propTypes = {
params: PropTypes.shape({
id: PropTypes.string.isRequired,
}).isRequired,
dispatch: PropTypes.func.isRequired,
};
}
export default connect(mapStateToProps)(DealContainer);
答案 0 :(得分:0)
实际上,您需要使用mapDispatchToProps来访问调度函数。
在那里,您可以定义将在组件呈现方法中调用的函数:
const mapDispatchToProps = (dispatch) => {
return {
yourFunctionToCallFromComponent: () => {
dispatch(yourAction())
}
}
}
export default connect(mapStateToProps, mapDispatchToProps)(DealContainer);