为什么导入在反应组件的mapDispatchToProps中显示为未定义

时间:2016-12-04 04:42:01

标签: reactjs redux redux-thunk

我有一些非常标准的代码覆盖mapDispatchToProps。在其中我调用静态函数authenticate,它是导入类AuthActions的一部分。在edge和chrome中,AuthActions未定义,但代码运行干净而没有错误。到底是怎么回事?这只是一个浏览器限制吗?

function mapDispatchToProps(dispatch){
  return {
    actions: {
      authenticate: (userId, password) => {
        debugger;
        let test = AuthActions.authenticate(userId, password);
        dispatch(test);
      }
    }
  };
}

0 个答案:

没有答案