gpt4 book ai didi

ReactJS : In react-rooter-dom, 是否已弃用 useHistory?

转载 作者:行者123 更新时间:2023-12-05 02:30:23 28 4
gpt4 key购买 nike

使用此代码:

import { Link, useHistory } from "react-router-dom";

...

const history = useHistory();

...

history.push("/login");

显示此错误:

enter image description here

useHistory 过时了吗?或者我确实需要使用其他功能?

最佳答案

是的,它在 react-router 的 V6 中被弃用了。在此版本中导航使用 useNavigate Hook 。在此处查看文档 React Router V6 API Reference .或者更具体地说,useNavigate 钩子(Hook)在这里 React Router v6 UseNavigate Hook .像这样:

import { useNavigate } from 'react-router-dom'

const navigate = useNavigate()

navigate('/login')

关于ReactJS : In react-rooter-dom, 是否已弃用 useHistory?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71884379/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com