Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'type') at
时间: 2023-11-20 07:59:09 浏览: 73
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#Object‘的解决方法
这个错误通常是因为你在访问一个未定义的对象或属性。在你的代码中,你可能需要检查一下访问store.user.state.userInfo.data之前是否已经成功获取了userInfo对象。如果userInfo对象是空的或未定义的,那么访问它的属性就会导致这个错误。你可以使用JavaScript中的可选链运算符(?.)来避免这个问题,例如:store.user.state.userInfo?.data?.id。这样,如果userInfo或data是未定义的,代码就会安全地返回undefined而不会抛出错误。
阅读全文