我遇到的错误是Cannot read property 'history' of undefined
。我已经从useHistory()
正确导入了react-router-dom
钩子。
export const App = () => {
/* Handle deep link navigation based on incoming myApp://entity/:entity_id call */
const history = useHistory()
const setLocationFromDeepLink = (path: string) => {
history.push(`/${path}`)
}
.......
答案 0 :(得分:1)
请确保您使用的是来自react-router-dom的BrowserRouter 因为useHistory()仅适用于BrowserRouter。
import { BrowserRouter} from 'react-router-dom'
<BrowserRouter>
...
Do logic here
...
</BrowserRouter>
您可以从下面的链接中了解有关react-router-dom的更多信息