我有一些非常标准的代码覆盖mapDispatchToProps。在其中我调用静态函数authenticate,它是导入类AuthActions的一部分。在edge和chrome中,AuthActions未定义,但代码运行干净而没有错误。到底是怎么回事?这只是一个浏览器限制吗?
function mapDispatchToProps(dispatch){
return {
actions: {
authenticate: (userId, password) => {
debugger;
let test = AuthActions.authenticate(userId, password);
dispatch(test);
}
}
};
}