返回一个函数,允许您在浏览器中以编程方式导航,以响应用户交互或效果。
import { useNavigate } from "react-router";function SomeComponent() { let navigate = useNavigate(); return ( <button onClick={() => { navigate(-1); }} /> );} Copy
import { useNavigate } from "react-router";function SomeComponent() { let navigate = useNavigate(); return ( <button onClick={() => { navigate(-1); }} /> );}
通常最好在 redirect 中 actions 和 loaders 中使用,而不是这个 hook。
返回一个函数,允许您在浏览器中以编程方式导航,以响应用户交互或效果。
通常最好在 redirect 中 actions 和 loaders 中使用,而不是这个 hook。