我的mapDispatchToProps的工作方式如下:

const mapDispatchToProps = dispatch => ({
  getCourts: () => dispatch(courtActions.getCourts()),
  selectStyle: style => dispatch(courtActions.selectStyle(style)),
  selectPoint: index => dispatch(courtActions.selectPoint(index)),
  sortPoints: sort => dispatch(courtActions.sortPoints(sort))
});


我想这样写:

const mapDispatchToProps = dispatch => ({
      ...courtActions,
});


但是当我这样做时,我的所有动作都不起作用(它们不会被派遣)。我敢肯定这是显而易见的。但是,这是怎么回事?

这是动作文件:

export const getCourts = () => dispatch =>
  axios
    .get("/courts")
    .then(response => dispatch({ type: GET_COURTS, payload: response.data }));

export const selectStyle = style => ({ type: SELECT_STYLE, payload: style });

export const sortPoints = type => ({ type: SORT_POINTS, payload: type });

export const selectPoint = index => ({ type: SELECT_POINT, payload: index });

export default {
  getCourts,
  selectStyle,
  sortPoints,
  selectPoint
};

最佳答案

mapDispatchToProps也带一个对象,您可以使用它,而不用将函数定义为mapDispatchToProps,而这将需要返回使用分派的函数。

根据文档:


  如果传递了一个对象,则假定该对象内部的每个函数都是
  Redux动作创建者。具有相同功能名称但具有
  每个动作创建者都包裹在调度调用中,因此他们可能是
  直接调用,将​​合并到组件的道具中。




const mapDispatchToProps = courtActions;


或者,您可以简单地通过courtActions作为第二个参数进行连接,例如

connect(mapStateToProps, courtActions)(MyComponent);

关于javascript - 传播Redux Action 在mapDispatchToProps中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55096789/

10-16 10:47