React useHistory, Object is of type 'unknown'
使用React useHistory时遇到错误:Object is of type 'unknown',请大佬指教。
项目版本信息如下:
Node version: v12.14.1
React version: 17.0.1
react-router-dom version: 16.9.8
@types of react-router-dome version: ^5.1.6
使用过程
import { useHistory } from "react-router-dom";
const history = useHistory();
useEffect(() => {
if (history.location.state) {
const taskId: any = history.location.state.taskId
getItemList(taskId)
}
}, [])
// Error message
Object is of type 'unknown'. TS2571
252 | useEffect(() => {
253 | if (history.location.state) {
> 254 | const taskId: any = history.location.state.taskId
| ^
257 | }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
https://stackoverflow.com/que...