useHistory做页面跳转导航

阅读 71

2022-07-01

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


精彩评论(0)

0 0 举报