In react-router, the jump in the component can be used with <Link> But how to jump outside the component requires the use of react routing history The replace method is used in the same way as the push method. The function of replace is to replace the current history record. 1.hookimport {useHistory} from 'react-router-dom'; function goPage(e) { history.push({ pathname: "/home", state: {id: 1} }); } pathname is the routing address, state can be passed as a parameter Get parameters: import {useLocation} from 'react-router-dom'; function getParams(){ let location = useLocation(); let id = location.state.id; } 2. Class componentimport React from 'react'; import {createBrowserHistory} from "history"; class App extends React.Component { constructor(props) { super(props); } goPage() { let history = createBrowserHistory() history.push({ pathname: "/home", state: {id: 1} }); history.go(); } render() {return null;} } If history.go is not called, the route changes, but the page does not jump. This is the end of this article about how to use history jump in React Router. For more relevant React Router history jump content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of Mybatis special character processing
>>: Solution to the inconsistency between crontab execution time and system time
Table of contents 1. Signal List 1.1. Real-time s...
Classification of color properties Any color can ...
When Mysql occupies too much CPU, where should we...
Table of contents Preface 1. Basic knowledge of d...
1. Why do we need to divide tables and partitions...
1. Purchase of Server 1. I chose Alibaba Cloud...
1. Download the axios plugin cnpm install axios -...
1. Download the image docker pull selenium/hub do...
html , address , blockquote , body , dd , div , d...
This article example shares the specific code for...
Single page application characteristics "Ass...
Table of contents 1. Commonly used string functio...
During the development process, I often encounter...
When connecting to the local database, navicat fo...