Home Web Front-end JS Tutorial How to use history to control routing in react-router (detailed tutorial)

How to use history to control routing in react-router (detailed tutorial)

Jun 12, 2018 pm 06:17 PM
history react router V4

This article mainly introduces you to the relevant information about how react-router v4 uses history to control routing jumps. The article introduces it in detail through sample code, which has certain reference learning value for everyone's study or work. Friends who need it, please follow me and learn together.

Preface

It has been a long time since React Router v4 was officially released. This week I upgraded a React shelf. The previous The router is still using version v2.7.0, so I decided to upgrade the router as well, just in time to "try something new"...

There are rumors in the world that the official currently maintains both versions 2.x and 4.x. (ヾ(。ꏿ﹏ꏿ)ノ゙Hey, at this moment, I believe that you who are as smart as me will also find out, where has ReactRouter v3 gone? Lost it all?? Bala is out of trouble??? Dare you give me a perfect one? Explanation!?) In fact, version 3.x does not introduce any new features compared to version 2.x, it just removes the warnings of some obsolete APIs in version 2.x. According to the plan, when new projects without historical baggage want to use the stable version of ReactRouter, they should use ReactRouter 3.x. The 3.x version is currently still in the beta stage, but will be officially released before the 4.x version. If you are already using version 2.x, upgrading to 3.x will not require any additional code changes.

Problem

When we use react-router v3, we want to jump the path, we usually handle it like this

  • We export browserHistory from react-router.

  • We use browserHistory.push() and other methods to operate routing jumps.

Similar to the following

import browserHistory from 'react-router';
export function addProduct(props) {
 return dispatch =>
 axios.post(`xxx`, props, config)
 .then(response => {
 browserHistory.push('/cart'); //这里
 });
}
Copy after login

but!! Here comes the problem, in react-router v4, export of browserHistory, etc. is not provided~~

What to do? How do I control routing jumps? ? ?

Solution

#1. Use withRouter

withRouter high-order component, which provides history Let you use~

import React from "react";
import {withRouter} from "react-router-dom";

class MyComponent extends React.Component {
 ...
 myFunction() {
 this.props.history.push("/some/Path");
 }
 ...
}
export default withRouter(MyComponent);
Copy after login

This is the official recommended method. But this method is a bit uncomfortable to use. For example, when we want to use routing in redux, we can only pass the history in the component. .

Just like the code in the question chapter, we must pass a history parameter from the component. . .

2. Using Context

react-router v4 exposes a router object through Contex in the Router component~

Use Context in sub-components , we can get the router object, as in the following example~

import React from "react";
import PropTypes from "prop-types";
class MyComponent extends React.Component {
 static contextTypes = {
 router: PropTypes.object
 }
 constructor(props, context) {
 super(props, context);
 }
 ...
 myFunction() {
 this.context.router.history.push("/some/Path");
 }
 ...
}
Copy after login

Of course, use this method with caution~try not to use it. Because react does not recommend using context. It may be abandoned in future versions.

3. hack

In fact, the analysis problem is that the history we passed to the Router component in v3 was exposed again, allowing us to call~~

The component BrowserRouter of react-router v4 creates its own history, and it is not exposed and cannot be referenced by us. Embarrassing~

We can not use the recommended BrowserRouter and still use the Router component. We create the history ourselves, and other places call the history we created. Look at the code~

We create a history ourselves

// src/history.js
import createHistory from 'history/createBrowserHistory';
export default createHistory();
Copy after login

We use the Router component

// src/index.js
import { Router, Link, Route } from 'react-router-dom';
import history from './history';
ReactDOM.render(
 <Provider store={store}>
 <Router history={history}>
  ...
 </Router>
 </Provider>,
 document.getElementById(&#39;root&#39;),
);
Copy after login

We can use it in other places

import history from &#39;./history&#39;;
export function addProduct(props) {
 return dispatch =>
 axios.post(`xxx`, props, config)
  .then(response => {
  history.push(&#39;/cart&#39;); //这里
  });
}
Copy after login

4. I insist on using BrowserRouter

Indeed, react-router v4 recommends using the BrowserRouter component, but in the third solution, we abandoned this component and fell back to using the Router component.

what to do. If you go take a look at the source code of BrowserRouter, I think you will suddenly understand.

The source code is very simple, nothing much. We write a BrowserRouter component entirely by ourselves, and then replace the Router component in the third solution. hey-hey.

This ends here. I am currently using the third method. Although the first method is officially recommended, I think it is more troublesome to use. ~

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Implementing the MVVM framework in js (detailed tutorial)

How does requireJS implement a module loader?

Taobao-like JSsearch search (detailed tutorial)

What are the differences between on and click in jquery?

What are the methods of Angular 2 style binding

The above is the detailed content of How to use history to control routing in react-router (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Vivo X200 Pro: Better camera and V4 AI chip teased. X100 and X90 Proto to come with camera feature of the Vivo X100 Ultra Vivo X200 Pro: Better camera and V4 AI chip teased. X100 and X90 Proto to come with camera feature of the Vivo X100 Ultra Jul 31, 2024 pm 08:23 PM

Vivo has not yet publicly announced the name of the X100 successor, but various teasers on its official Weibo profileare already talking about the next generation of flagship cameras, specifically the sensor technology that will replace the Sony IMX9

Guide to React front-end and back-end separation: How to achieve decoupling and independent deployment of front-end and back-end Guide to React front-end and back-end separation: How to achieve decoupling and independent deployment of front-end and back-end Sep 28, 2023 am 10:48 AM

React front-end and back-end separation guide: How to achieve front-end and back-end decoupling and independent deployment, specific code examples are required In today's web development environment, front-end and back-end separation has become a trend. By separating front-end and back-end code, development work can be made more flexible, efficient, and facilitate team collaboration. This article will introduce how to use React to achieve front-end and back-end separation, thereby achieving the goals of decoupling and independent deployment. First, we need to understand what front-end and back-end separation is. In the traditional web development model, the front-end and back-end are coupled

How to build simple and easy-to-use web applications with React and Flask How to build simple and easy-to-use web applications with React and Flask Sep 27, 2023 am 11:09 AM

How to use React and Flask to build simple and easy-to-use web applications Introduction: With the development of the Internet, the needs of web applications are becoming more and more diverse and complex. In order to meet user requirements for ease of use and performance, it is becoming increasingly important to use modern technology stacks to build network applications. React and Flask are two very popular frameworks for front-end and back-end development, and they work well together to build simple and easy-to-use web applications. This article will detail how to leverage React and Flask

How to build a reliable messaging app with React and RabbitMQ How to build a reliable messaging app with React and RabbitMQ Sep 28, 2023 pm 08:24 PM

How to build a reliable messaging application with React and RabbitMQ Introduction: Modern applications need to support reliable messaging to achieve features such as real-time updates and data synchronization. React is a popular JavaScript library for building user interfaces, while RabbitMQ is a reliable messaging middleware. This article will introduce how to combine React and RabbitMQ to build a reliable messaging application, and provide specific code examples. RabbitMQ overview:

React Router User Guide: How to implement front-end routing control React Router User Guide: How to implement front-end routing control Sep 29, 2023 pm 05:45 PM

ReactRouter User Guide: How to Implement Front-End Routing Control With the popularity of single-page applications, front-end routing has become an important part that cannot be ignored. As the most popular routing library in the React ecosystem, ReactRouter provides rich functions and easy-to-use APIs, making the implementation of front-end routing very simple and flexible. This article will introduce how to use ReactRouter and provide some specific code examples. To install ReactRouter first, we need

How to build real-time data processing applications using React and Apache Kafka How to build real-time data processing applications using React and Apache Kafka Sep 27, 2023 pm 02:25 PM

How to use React and Apache Kafka to build real-time data processing applications Introduction: With the rise of big data and real-time data processing, building real-time data processing applications has become the pursuit of many developers. The combination of React, a popular front-end framework, and Apache Kafka, a high-performance distributed messaging system, can help us build real-time data processing applications. This article will introduce how to use React and Apache Kafka to build real-time data processing applications, and

PHP, Vue and React: How to choose the most suitable front-end framework? PHP, Vue and React: How to choose the most suitable front-end framework? Mar 15, 2024 pm 05:48 PM

PHP, Vue and React: How to choose the most suitable front-end framework? With the continuous development of Internet technology, front-end frameworks play a vital role in Web development. PHP, Vue and React are three representative front-end frameworks, each with its own unique characteristics and advantages. When choosing which front-end framework to use, developers need to make an informed decision based on project needs, team skills, and personal preferences. This article will compare the characteristics and uses of the three front-end frameworks PHP, Vue and React.

Integration of Java framework and front-end React framework Integration of Java framework and front-end React framework Jun 01, 2024 pm 03:16 PM

Integration of Java framework and React framework: Steps: Set up the back-end Java framework. Create project structure. Configure build tools. Create React applications. Write REST API endpoints. Configure the communication mechanism. Practical case (SpringBoot+React): Java code: Define RESTfulAPI controller. React code: Get and display the data returned by the API.

See all articles