How to use history redirection in React Router

How to use history redirection in React Router

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.
go, this method is used to move forward or backward, history.go(-1);
goBack, this method is used to go back, history.goBack();
goForward, this method is used to move forward, history.goForward();

1.hook

import {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 component

import 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:
  • React-router v4: How to use history to control route jumps
  • react-router JS control routing jump example
  • Example of how react-router implements jump value transfer
  • React Router 5.1.0 uses useHistory to implement page jump navigation

<<:  Detailed explanation of Mybatis special character processing

>>:  Solution to the inconsistency between crontab execution time and system time

Recommend

A brief discussion on Linux signal mechanism

Table of contents 1. Signal List 1.1. Real-time s...

Classification of web page color properties

Classification of color properties Any color can ...

Optimization methods when Mysql occupies too high CPU (must read)

When Mysql occupies too much CPU, where should we...

MySQL Basics Quick Start Knowledge Summary (with Mind Map)

Table of contents Preface 1. Basic knowledge of d...

How to quickly build your own server detailed tutorial (Java environment)

1. Purchase of Server 1. I chose Alibaba Cloud...

Detailed explanation of JavaScript axios installation and packaging case

1. Download the axios plugin cnpm install axios -...

Building a selenium distributed environment based on docker

1. Download the image docker pull selenium/hub do...

HTML tutorial, HTML default style

html , address , blockquote , body , dd , div , d...

...

Writing tab effects with JS

This article example shares the specific code for...

Comprehensive summary of mysql functions

Table of contents 1. Commonly used string functio...

Linux platform mysql enable remote login

During the development process, I often encounter...

Solution to 1045 error when navicat connects to mysql

When connecting to the local database, navicat fo...