useHistory做页面跳转导航

useHistory

The useHistory hook gives you access to the history instance that you may use to navigate.



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

function HomeButton() {
  let history = useHistory();

  function handleClick() {
    history.push("/home");
  }

  return (
    <button type="button" onClick={handleClick}>
      Go home
    </button>
  );
}

原文地址:https://www.cnblogs.com/xutongbao/p/15264342.html