React is different from Vue. It implements route interception by setting meta characters in the route. When using Vue, the framework provides a routing guard function, which is used to perform some verification work before entering a certain route. If the verification fails, it jumps to the 404 or login page, such as the beforeEnter function in Vue: ... router.beforeEach(async(to, from, next) => { const toPath = to.path; const fromPath = from.path; }) ... The basic idea of react to implement routing interception is to use the render function of Route. Interception is achieved by judging the interception conditions to realize the jump of different components. In previous versions, React Router also provided a similar onEnter hook, but in React Router 4.0, this method was cancelled. React Router 4.0 and later uses declarative components. Routers are components. To implement the routing guard function, we have to write it ourselves. import * as React from 'react'; import { HashRouter,Switch,Route,Redirect } from 'react-router-dom'; import Index from "./page/index"; import Home from "./page/home"; import ErrorPage from "./page/error"; import Login from "./page/login"; export const Router = () => ( <HashRouter> <Switch> <Route path="/" exact component={Index}/> <Route path="/login" exact component={Login}/> <Route path="/home" exact component={Home}/> <Route path="/404" exact component={ErrorPage}/> <Redirect to="/404" /> </Switch> </HashRouter> ); The Router component above contains three pages:
First, create a routerMap.js file in the root directory src. The code is as follows: /** * Define the routing component and set auth to true, indicating that the route requires permission verification*/ import Admin from "./pages/Admin"; import Login from "./pages/Login"; import Error from "./pages/Error"; export const routerMap = [ {path: "/", name: "admin", component: Admin, auth: true}, {path: "/login", name: "Login", component: Login}, {path: "/error", name: "error", component: Error}, ]; All routing jumps are completed by the FrontendAuth high-order component proxy. Here is the implementation of the FrontendAuth.js component: /** * Routing guard verification */ import React, {Component} from "react"; import {Route, Redirect} from "react-router-dom"; class FrontendAuth extends Component { // eslint-disable-next-line no-useless-constructor constructor(props) { super(props); } render() { const {routerConfig, location} = this.props; const {pathname} = location; const isLogin = localStorage.getItem("user"); console.log(pathname, isLogin); console.log(location); // If the route does not need permission check, except for the login page in the logged-in state // Because after logging in, you cannot jump to the login page // This part of the code is to access routes that do not require permission check in the non-logged-in state const targetRouterConfig = routerConfig.find( (item) => item.path === pathname ); console.log(targetRouterConfig); if (targetRouterConfig && !targetRouterConfig.auth && !isLogin) { const {component} = targetRouterConfig; return <Route exact path={pathname} component={component}/>; } if (isLogin) { // If you are logged in, you want to jump to the login page and redirect to the home page if (pathname === "/login") { return <Redirect to="/"/>; } else { // If the route is legal, jump to the corresponding route if (targetRouterConfig) { return ( <Route path={pathname} component={targetRouterConfig.component}/> ); } else { // If the route is illegal, redirect to the 404 page return <Redirect to="/error"/>; } } } else { // In the non-login state, when the route is legal and requires permission verification, jump to the login page and require login if (targetRouterConfig && targetRouterConfig.auth) { return <Redirect to="/login"/>; } else { // In the non-logged in state, when the route is illegal, redirect to 404 return <Redirect to="/error"/>; } } } } export default FrontendAuth; Then, define the Router component. In App.js, this component is the result of being wrapped by a higher-order component: import './App.less'; import React, {Fragment} from "react"; import {Switch} from 'react-router-dom' import FrontendAuth from "./FrontendAuth"; import {routerMap} from "./routerMap"; function App() { return ( <Fragment> {/*Only match one, if the match succeeds, do not match further, high efficiency*/} <Switch> <FrontendAuth routerConfig={routerMap}/> </Switch> </Fragment> ); } export default App; test This is the end of this article about the implementation of react routing guard (route interception). For more relevant react routing guard content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Specific use of Linux dirname command
>>: MySql knowledge points: transaction, index, lock principle and usage analysis
In front-end development, we are in direct contac...
Table of contents Preface Source code Where do I ...
1. Introduction to Macvlan Before the emergence o...
Preface Many web applications store data in a rel...
HTML web page list tag learning tutorial. In HTML ...
REPLACE Syntax REPLACE(String,from_str,to_str) Th...
Table of contents 1. Basic use 2. Several points ...
1 MySQL autocommit settings MySQL automatically c...
Preface When a 403 cross-origin error occurs No &...
1. Download the MySQL 5.7.11 zip installation pac...
The main text page of TW used to have a width of 8...
1. How to represent the current time in MySQL? In...
1. First remotely connect to the server 2. Open S...
How to uninstall MySQL database under Linux? The ...