我在helpers.js
中公开了一堆帮助函数,有没有办法让我的helpers.js中的所有函数都知道redux存储?
我通常了解它是否在Component类中,我可以使用导出默认的connect(mapStateToProps)(ComponentName)以便将状态映射到我的道具。
我还试图避免从redux.store
直接访问或在全球范围内公开商店。
这不是React Redux - accessing existing store in a helper function的重复项 答案导出商店的解决方案,我无法控制。
感谢您的帮助。