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>
  );
}

posted @ 2021-07-08 15:25  徐同保  阅读(967)  评论(0编辑  收藏  举报