react-router v6

1、重定向redirect
https://stackoverflow.com/questions/69868956/how-can-i-redirect-in-react-router-v6
2、监听location变化

useEffect(() => {
        console.log(location.pathname);
    }, [location.pathname]);

3、useHistory =>useNavigate

const navigate = useNavigate();
navigate(pathname)
posted @ 2022-10-19 15:25  Running00  阅读(22)  评论(0编辑  收藏  举报