我可以通过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错误: 对象的类型为“未知”。
答案 0 :(得分:0)
尝试在个人资料中添加类型,即
Const profile:any = useSelector(state=>state)
或
Const profile:object<any> = useSelector(state=>state)
在打字稿中,如果您尝试访问对象的任何这些属性,则它必须具有类型。