如何实现历史记录 属性 并将其传递给 index.tsx 中的路由器...

How to implement history property and past it to Router... inside the index.tsx

我需要帮助。 如何实现历史 属性 以将其用作全局道具以及在 hole 项目中(也在扩展名为 .ts 的文件中)。

我需要 .ts(不是功能组件 .tsx)文件中的(history.push 方法)重定向到主页。

当我试图通过 Router 时,你可以看到图像和 history prop 的问题。 enter image description here

enter image description here

您安装了最新版本的 history,但安装的是之前版本的 react-router-domreact-router-dom@5 使用 history@4.

  1. 卸载当前版本:npm un -s history
  2. 安装旧版本:npm i -s history@4