我無法呼叫調度功能,當我嘗試使用bindActionCreators
this.props.dispatch不是函數
調度功能不工作:
@connect(state => ({oPurchaseDetails: state.cart.cartItems}), dispatch => bindActionCreators({updateItem}, dispatch))
如果我不使用bindActionCreators
,updateItem函數不起作用。
的updateItem功能不工作:
@connect(state => ({oPurchaseDetails: state.cart.cartItems}), dispatch => ({updateItem, dispatch}))