采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
store.ts 里的export type RootState = ReturnType
export type RootState = ReturnType<typeof store.getState>
应该改成
export type RootState = ReturnType<typeof persistedReducer>
我估计可能是你在redux的其他相关文件中引用了RootState。虽然课程代码不会出现环形引用的问题,但是你的修改是正确的。使用 export type RootState = ReturnType<typeof persistedReducer> 或者 export type RootState = ReturnType<typeof rootReducer> 都是可以的。
报错截图:
可以截个图看看报错信息吗?
登录后可查看更多问答,登录/注册
React18 精讲 + 结合 TS 实战 + 热门业务开发,获取必备技能
696 5
875 10
739 2
1.8k 2
852 1