我以前用过react-router-dom v5.2.0. 我曾经history.replace('/path)将页面重定向到另一个页面。(因此它不会存储在地址历史记录中)。现在我必须使用react-router-dom v6.0.0-beta.0. 在版本6中,我必须使用useNavigatehook而不是useHistoryhook。我可以如下使用它。
const navigate = useNavigate();
navigate('/path')
Run Code Online (Sandbox Code Playgroud)
但我不知道如何使用它进行重定向。(喜欢history.replace)