The solution to the page not refreshing after the route changes after react jumps

The solution to the page not refreshing after the route changes after react jumps

question

There seem to be many reasons for this problem. My problem is that the URL with parameters cannot be refreshed. In router 5.0 version, using the withRouter associated component to jump to the page is as follows

insert image description here

Routing Code

insert image description here

Solution

Adding a key to the top-level element of the routing component increases the recognition of the route, because ordinary jumps are identified based on the path, but when the path carries parameters, the route cannot be accurately identified. However, when jumping to a page, a key will be added to the localtion object for each address. Print as follows

 // Component mounting componentDidMount() {
    console.log(this.props.location);
  }

insert image description here

We can accurately locate the route by binding this key to the top-level element of the route.

 render() {
    return (
      {/*This is the key*/}
      <div key={this.props.location.key}>
          <Switch>
            <Route exact path="/" component={Home} />
            <Route exact path="/products/:id" component={Products} />
            <Route exact path="/about" component={About} />
            <Route exact path="/solution" component={Solution} />
            <Route
              exact
              path="/solutionDetails/:id"
              component={SolutionDetails}
            />
            <Route exact path="/download" component={Download} />
            <Route path="/about" component={Download} />
            <Route exact path="/details/:id" component={Details} />
            <Route path="/contact" component={Contact} />
            <Route component={ErrorPage} />
          </Switch>
      </div>
    );
  }

However, you may find that this.props is an empty object {}. That may be because you did not use withRouter to associate the component. Just associate it. Note that app.js cannot be associated, withrouter can only be associated with routing components or subcomponents of app.js

import React, { Component } from "react";
import { withRouter } from "react-router";

class routers extends Component {
 /**
  * Life cycle function */
 // Component mounting componentDidMount() {
   console.log(this.props.location);
 }
 render() {
   return (
     <div key={this.props.location.key}>
     </div>
   );
 }
}
export default withRouter(routers);

This is the end of this article about the solution to the problem that the page does not refresh after the route changes after react jumps. For more related content about the page not refreshing after react jumps, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the solution to the problem that the page does not refresh when the Url parameter changes in React-Router
  • Solution to the 404 problem of react-router browserHistory refresh page

<<:  Data Structure - Tree (III): Multi-way Search Tree B-tree, B+ tree

>>:  Detailed explanation of MySQL from getting started to giving up - installation

Recommend

Detailed explanation of the use of docker tag and docker push

Docker tag detailed explanation The use of the do...

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failu...

Several methods to execute sql files under mysql command line

Table of contents The first method: When the MySQ...

25 fresh useful icon sets for download abroad

1. E-Commerce Icons 2. Icon Sweets 2 3. Mobile Ph...

mysql indexof function usage instructions

As shown below: LOCATE(substr,str) Returns the fi...

Six methods for nginx optimization

1. Optimize Nginx concurrency [root@proxy ~]# ab ...

Pure CSS to achieve hover image pop-out pop-up effect example code

Implementation principle The main graphics are co...

Summary of some problems encountered when integrating echarts with vue.js

Preface I'm currently working on the data ana...

How to solve the problem that Seata cannot use MySQL 8 version

Possible reasons: The main reason why Seata does ...

Teach you how to write maintainable JS code

Table of contents What is maintainable code? Code...

SQL group by to remove duplicates and sort by other fields

need: Merge identical items of one field and sort...

Summary of 4 solutions for returning values ​​on WeChat Mini Program pages

Table of contents Usage scenarios Solution 1. Use...