


How to use history to control routing in react-router (detailed tutorial)
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'); //这里 }); }
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);
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"); } ... }
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();
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('root'), );
We can use it in other places
import history from './history'; export function addProduct(props) { return dispatch => axios.post(`xxx`, props, config) .then(response => { history.push('/cart'); //这里 }); }
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

How to build a real-time chat application using React and WebSocket Introduction: With the rapid development of the Internet, real-time communication has attracted more and more attention. Live chat apps have become an integral part of modern social and work life. This article will introduce how to build a simple real-time chat application using React and WebSocket, and provide specific code examples. 1. Technical preparation Before starting to build a real-time chat application, we need to prepare the following technologies and tools: React: one for building

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 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

React Responsive Design Guide: How to Achieve Adaptive Front-end Layout Effects With the popularity of mobile devices and the increasing user demand for multi-screen experiences, responsive design has become one of the important considerations in modern front-end development. React, as one of the most popular front-end frameworks at present, provides a wealth of tools and components to help developers achieve adaptive layout effects. This article will share some guidelines and tips on implementing responsive design using React, and provide specific code examples for reference. Fle using React

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 code debugging guide: How to quickly locate and resolve front-end bugs Introduction: When developing React applications, you often encounter a variety of bugs that may crash the application or cause incorrect behavior. Therefore, mastering debugging skills is an essential ability for every React developer. This article will introduce some practical techniques for locating and solving front-end bugs, and provide specific code examples to help readers quickly locate and solve bugs in React applications. 1. Selection of debugging tools: In Re

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
