所以我试图将我的生命周期方法移动到使用 Recompose 的 HOC 装饰器中。像这样的东西...
export const fetchOptions= lifecycle({
componentDidMount() {
this.props.dispatch(change('mainForm', 'orderHeader.proxies', this.props.currentSalesRepId));
},
componentDidUpdate(prevProps) {
if (this.props.total != prevProps.total){
this.props.dispatch(change('mainForm', 'totalPurchase', this.props.total));
}
}
});
然后我试图将它添加到呈现我所有标记的表单组件中。像这样。
export default compose(
connect(mapState, mapDispatch),
fetchOptions,
)(MainReduxForm)
我不断收到 this.props.dispatch 不是函数的错误...有什么想法吗?我故意保持这个简短以避免文字墙。如果您需要更多信息,请告诉我!