别人做的 web app ,他本地运行没问题, 给我源代码后,我进行 yarn install ,yarn build 之后再 yarn start ,浏览器打开时报错, 错误报于 redux ,请问这是什么问题?
Error: The slice reducer for key "session" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.
发不了包含全部 error stack 的截图,只能粘贴几个关键点了:基本就是 umi 和 dva 代码和 redux 之间的问题。
_DvaContainer.render
./src/.umi/plugin-dva/dva.ts:83
80 | render() {
81 | let app = getApp();
82 | app.router(() => this.props.children);
> 83 | return app.start()();
84 | }
85 | }
86 |
initialValue
./src/.umi/umi.ts:30
27 | defaultTitle: ``,
28 | },
29 | });
> 30 | return renderClient(opts);
31 | },
32 | args,
33 | });
./src/.umi/umi.ts
./src/.umi/umi.ts:36
33 | });
34 |
35 | const clientRender = getClientRender();
> 36 | export default clientRender();
37 |
38 |
39 | window.g_umi = {
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.