这是我使用connect
的方法:
function mapStateToProps(state, ownProps) {
return {
// we'll call this in our component -> this.props.listingData
listingData: state.locations.listingData,
//we'll call this in out component -> this.props.formState
formState: state.formStates.formState
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators(locationActions, formStateActions, dispatch)
};
}
export default connect(mapStateToProps, mapDispatchToProps)(homePage);
这是我使用的按钮:
<div onClick={this.stateToEntry} className="addButton">Add</div>
这是要运行的函数:
stateToEntry() {
this.props.actions.stateToEntry();//formStateActions.stateToEntry();//dispatch an action to update the Redux store state
browserHistory.push('/location');//then redirect to the add/edit/delete page using browserHistory
}
我收到
this.props.actions.stateToEntry()
不是函数的错误。实际上这里发生了什么以及如何解决这个问题?编辑:
这是日志数据:
换句话说,它只是在其周围添加
{}
。我已经尝试过单独使用{formStateActions}
,它没有用,但是formStateActions
有用。对于@LazarevAlexandr,这是我为
formStateActions
创建的动作:export function stateToEntry() {
return { type: types.STATE_TO_ENTRY, formState: 'entry-mode'};
}
export function stateToEdit() {
return { type: types.STATE_TO_EDIT, formState: 'edit-mode'};
}
export function stateToDelete() {
return { type: types.STATE_TO_DELETE, formState: 'delete-mode'};
}
我的locationActions actioncreator很长,因此我不希望在此处完整发布。它们都是函数,有些是动作创建者,可返回动作,有些则是返回用于从api提取数据列表的功能。
最佳答案
bindActionsCreators
仅获取两个参数,因此如果要传递多个动作集,请尝试以下操作:
function mapDispatchToProps(dispatch) {
const actions = Object.assign({}, locationActions, formStateActions);
return {
actions: bindActionCreators(actions, dispatch)
};
}