Error: Could not find "store"报错问题
今天有人在用dva处理异步逻辑的时候出了这个错。小白过来看了好一会儿不知道什么问题,等架构大佬来看了看问题。开始还以为是umi版本的原因,他平时在umi 3的写法产生了问题。结果实际上很简单,目录models名字写错了。
Error:
Could not find "store" in the context of "Connect(xxxxxx)".
Either wrap the root component in a <Provider>,
or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(xxxx) in connect options.
机翻
错误:
在"连接"的上下文中找不到"存储"。
将根组件包装在,
或将自定义 React 上下文提供程序传递给和相应的 React 上下文使用者到连接选项中的连接。。
目录写错: model —> models
解决方法来源
理解:
redux.js store学习
Provider也是从react-redux导入的
在dva github上的项目例子能找到