admin管理员组文章数量:1342504
I'm using react-router v6 and I have to use history instance.
I've installed it using
yarn add history react-router-dom@next
One way of using history instance I guess it must be with v5 is to use useHistory hook imported from react-router-dom
this code is running fine with v5 but with v6 it is not working
import { useHistory } from "react-router-dom";
const history = useHistory();
const onRedirectCallback = (appState) => {
history.push(appState?.returnTo || window.location.pathname);
};
with v6 version, I'm having this error
Attempted import error: 'useHistory' is not exported from 'react-router-dom'.
I'm using react-router v6 and I have to use history instance.
I've installed it using
yarn add history react-router-dom@next
One way of using history instance I guess it must be with v5 is to use useHistory hook imported from react-router-dom
this code is running fine with v5 but with v6 it is not working
import { useHistory } from "react-router-dom";
const history = useHistory();
const onRedirectCallback = (appState) => {
history.push(appState?.returnTo || window.location.pathname);
};
with v6 version, I'm having this error
Attempted import error: 'useHistory' is not exported from 'react-router-dom'.
Share Improve this question asked Aug 26, 2020 at 12:01 Omama ZainabOmama Zainab 8805 gold badges15 silver badges27 bronze badges 1- 1 github./ReactTraining/react-router/blob/dev/docs/… – evgeni fotia Commented Aug 26, 2020 at 12:12
2 Answers
Reset to default 5You need to use useNavigate
hook and new navigate API.
import { useNavigate } from "react-router-dom";
const navigate = useNavigate();
const onRedirectCallback = (appState) => {
navigate(appState?.returnTo || window.location.pathname);
};
// import
const { useNavigate } from 'react-router-dom'
const navigate = useNavigate()
navigate({ pathname: './webpage/path' })
navigate({ pathname: './webpage/path' }, { replace: true })
本文标签: javascripthow to use history instance while using react routers v6Stack Overflow
版权声明:本文标题:javascript - how to use history instance while using react routers v6? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701589a2524416.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论