InstallEnter the following command to install it: // npm npm install react-router-dom //yarn yarn add react-router-dom react-router related tags There are eight commonly used components of import { BrowserRouter, HashRouter, Route, Redirect, Switch, Link, NavLink, withRouter, } from 'react-router-dom' Simple route jumpImplement a simple first-level routing jump import { BrowserRouter as Router, Route, Link } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <Link to="/home" className="link">Jump to Home page</Link> <Link to="/about" className="link">Jump to About page</Link> <Route path="/home" component={Home}/> <Route path="/about" component={About}/> </Router> </div> ); } export default App; The effect is as follows: Summary of key points:
Nested route jump For example, in the import { BrowserRouter as Router, Route, Link, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <Link to="/home">Go to Home page</Link> <Link to="/about">Go to About page</Link> <Route path="/home" component={Home}/> <Route path="/about" component={About}/> </Router> </div> ); } export default App; Then, in the import React from 'react' import { Route, Link, } from 'react-router-dom' import One from './one' import Two from './two' function Home () { return ( <> I am the Home page <Link to="/home/one">Jump to Home/one page</Link> <Link to="/home/two">Go to Home/two page</Link> <Route path="/home/one" component={One}/> <Route path="/home/two" component={Two}/> </> ) } export default Home Special note: The secondary route path matching of the routing component Dynamic Linking import { BrowserRouter as Router, Route, NavLink } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <NavLink to="/home" className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <Route path="/home" component={Home}/> <Route path="/about" component={About}/> </Router> </div> ); } export default App; /* Set the style of the active class */ .active { font-weight: black; color: red; } The effect is as follows: Route matching optimization When you click on the redirect link, it will automatically try to match all the paths corresponding to Under normal circumstances, you only need to match one rule and render it. That is, after a successful match, there is no need to make subsequent matching attempts. In this case, you can use import { BrowserRouter as Router, Route, NavLink, Switch, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <NavLink to="/home" className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <Switch> <Route path="/home" component={Home}/> <Route path="/about" component={About}/> <Route path="/home" component={Home}/> <Route path="/home" component={Home}/> {/* Ten thousand Route components are omitted here*/} <Route path="/home" component={Home}/> </Switch> </Router> </div> ); } export default App; The effect is as follows: Summary of key points: Placing multiple Redirect When the page jumps, if the jump link does not match any import { BrowserRouter as Router, Route, NavLink, Switch, Redirect, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <NavLink to="/home" className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <NavLink to="/shop" className="link">Jump to Shop page</NavLink> {/* Click to jump to /shop, but the path is not set*/} <Switch> <Route path="/home" component={Home}/> <Route path="/about" component={About}/> <Redirect to="/home" /> {/* When all the above Route components fail to match, redirect to /home */} </Switch> </Router> </div> ); } export default App; The effect is as follows: Routing parameters All parameters passed by the route will be obtained in There are three ways to pass parameters through routing. Let's take a look at them one by one. The first The first is to carry parameters on the jump path of import { BrowserRouter as Router, Route, NavLink, Switch, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> {/* The path /home carries two parameters, Zhang San and 18*/} <NavLink to="/home/张三/18" className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <Switch> {/* Receives name and age parameters at the same location on the /home matching path*/} <Route path="/home/:name/:age" component={Home}/> <Route path="/about" component={About}/> </Switch> </Router> </div> ); } export default App; Try to jump and print As you can see, the parameters of the first method are obtained through The second The second way is to pass parameters starting with import { BrowserRouter as Router, Route, NavLink, Switch, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> {/* Pass two parameters starting with ? after the jump path, namely name=张三, age=18 */} <NavLink to="/home?name=张三&age=18" className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <Switch> {/* No need to do receiving operation here*/} <Route path="/home" component={Home}/> <Route path="/about" component={About}/> </Switch> </Router> </div> ); } export default App; Try to jump and print As you can see, the parameters of the second method are obtained through The third The third way is to write the import { BrowserRouter as Router, Route, NavLink, Switch, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> {/* Describe the to attribute in the form of an object, the path attribute is named pathname, and the parameter attribute is named state */} <NavLink to={{pathname: "/home", state: {name: '张三', age: 18}}} className="link">Jump to Home page</NavLink> <NavLink to="/about" className="link">Jump to About page</NavLink> <Switch> {/* No need to specifically receive attributes here*/} <Route path="/home" component={Home}/> <Route path="/about" component={About}/> </Switch> </Router> </div> ); } export default App; Try to jump and print As you can see, the parameters of the third method are obtained through Functional Routing The above mainly jumps to a certain routing component through But sometimes, we need a more flexible way to jump routes, such as calling a function to jump routes anytime and anywhere. This is called functional routing. There are push The For example, set a import React from 'react' function Home (props) { let pushLink = () => { props.history.push('/about') } return ( <div className="a"> I am on the Home page <button onClick={pushLink}> Jump to the about page </button> </div> ) } export default Home The jump effect is as follows: As you can see, after jumping through the replace Change the code import React from 'react' function Home (props) { let replaceLink = () => { props.history.replace('/about') } return ( <div className="a"> I am on the Home page <button onClick={replaceLink}> Jump to the about page </button> </div> ) } export default Home The jump effect is as follows: As you can see, the initial path is '/', then jumps to '/home', and then clicks the button to jump to the goForward Calling the I won’t do more demonstrations here. goBack Calling the go As the name suggests, the This method accepts one parameter (parameter type is
Common components use routingThere are two concepts here: ordinary components and routing components Components rendered by For example, in the following code: import { BrowserRouter as Router, Route, NavLink, Switch, } from 'react-router-dom' import Home from './home' export default function App() { return ( <div className="App"> <Router> <NavLink to='/home' className="link">Jump to Home page</NavLink> <Switch> <Route path="/home" component={Home}/> </Switch> </Router> </div> ); } Then, the biggest difference between routing components and ordinary components is whether At this point, Here’s how to use it: import { BrowserRouter as Router, Route, NavLink, Switch, withRouter, // 1. Introduce witRouter } from 'react-router-dom' import About from './about' function App(props) { console.log(props); // 3. Try to print the props of the normal component App, and find that there is already content in the props, that is, the normal component can also have the same function as the routing component return ( <div className="App"> <Router> <NavLink to="/about" className="link">Jump to About page</NavLink> <Switch> <Route path="/about" component={About}/> </Switch> </Router> </div> ); } export default withRouter(App); // 2. Use the withRouter method to wrap ordinary components Replenishreplace There are two main types of jumps in functional routing, import { BrowserRouter as Router, Route, Link } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <Link to="/home" className="link">Jump to Home page</Link> <Link to="/about" className="link">Jump to About page</Link> <Route path="/home" component={Home} replace={true}/> {/* replace is true, jump type is replace */} <Route path="/about" component={About} replace={false}/> {/* replace is false, jump type is push */} </Router> </div> ); } export default App; The Route component has a replace attribute that can set the redirect type. When the value is true, the redirect type is replace; when it is false, the redirect type is push. excat The default route matching is fuzzy matching. For example: import { BrowserRouter as Router, Route, Link, } from 'react-router-dom' import Home from './home' import About from './about' function App() { return ( <div className="App"> <Router> <Link to="/home/abc">Jump to Home page</Link> {/* Jump to /home/abc, but there is no abc routing component under home*/} <Link to="/about/abc">Jump to About page</Link> {/* Jump to /about/abc, but there is no abc routing component under home*/} <Route path="/home" component={Home} /> {/* The route matching rule is /home, the exact attribute is not set, and the current match is fuzzy*/} <Route path="/about" component={About} exact/> {/* The route matching rule is /about, the exact attribute is set, and the current match is exact*/} </Router> </div> ); } export default App; The effect is as follows: As can be seen in the figure, when jumping to Summarize:
The above is the detailed content of the no-nonsense quick start with React routing. For more information about React routing quick start, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed explanation of SSH password-free login configuration under Linux
>>: MySQL 5.7.20 installation and configuration method graphic tutorial under Windows
Table of contents In vue2 In vue3 Notes on setup ...
Table of contents Overview How to achieve it Spec...
Original : http://developer.yahoo.com/performance...
Table of contents Preface Prepare Implementation ...
Table of contents 1. Slow query configuration 1-1...
This article uses examples to illustrate the impl...
Table of contents 1. Tool Introduction 2. Workflo...
Underlining in HTML used to be a matter of enclos...
2.1 Semanticization makes your web pages better u...
Background: During the development process, we of...
Table of contents 1. Process Control 2. Sequentia...
background An nginx server module needs to proxy ...
System environment: centos7.4 1. Check whether th...
Use native JavaScript to simply implement the cou...
1. Experimental Environment serial number project...