首页 > 解决方案 > 使用来自 React-Redux 的状态时出现问题 ___ 属性 'cart' 在类型 'DefaultRootState' 上不存在 - 来自 MERN 项目

问题描述

根据 VS 代码,我得到的错误是 --- 属性 'productDetails' 在类型 'DefaultRootState' 上不存在

为了更详细地说明问题如下,我已经尝试了页面上给出的解决方案,但是没有一个对我有用。所以我的问题如下:

//While I am using 

const productList = useSelector((state) => state.productList)  

//I am getting that property does not exist. the codes can be seen from the below images

这是 store.js 文件

这是我尝试使用的文件 > const productList = useSelector((state) => state.productList

在第二张图片中可以清楚地看到错误“DefaultRootState”类型上不存在属性“购物车”.ts(2339)

这是一个 MERN 项目。

标签: javascriptreactjsreduxmern

解决方案


推荐阅读