无法通过redux访问useSelector上的信息

时间:2019-07-25 17:12:59

标签: javascript reactjs typescript

我可以通过console.log访问redux中的信息...但是当我尝试访问该信息的某些部分时,我遇到一些类型错误。

const profile = useSelector(state => state);

console.log(profile);  // Work's and print the info
console.log(profile.auth.token); // Does not work
  /src/components/Header/index.tsx(17,24)中的

TypeScript错误:   对象的类型为“未知”。

1 个答案:

答案 0 :(得分:0)

尝试在个人资料中添加类型,即

Const profile:any = useSelector(state=>state) 

Const profile:object<any> = useSelector(state=>state)

在打字稿中,如果您尝试访问对象的任何这些属性,则它必须具有类型。