前端路由解析(三) —— React-Router源码解析

本文涉及的产品
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
简介: 前端路由解析(三) —— React-Router源码解析

640.jpg



写在前面

现在的前端应用很多都是单页应用。路由对于单页应用来说,是一个重要的组成部分。本系列文章将讲解前端路由的实现原理。这是系列文章的第三篇:React-Router源码解析。


前端路由解析(一) ——  hash路由

前端路由解析(二) ——  history路由


本文不会再介绍路由的基本原理,而是会结合React-Router的源码,探索一下路由和React是如何结合的。


示例代码


本文所用的React-Router的版本为:5.1.2,react版本为:16.12.0

我们用官方最简单的代码示例来分析一下React-Router的源码。


import {    BrowserRouter as Router,    Switch,    Route,    Link} from "react-router-dom";
export default function App() {    return (        <Router>            <div>                <nav>                    <ul>                        <li>                            <Link to="/">Home</Link>                        </li>                        <li>                            <Link to="/about">About</Link>                        </li>                        <li>                            <Link to="/users">Users</Link>                        </li>                    </ul>                </nav>
                {/* A <Switch> looks through its children <Route>s and            renders the first one that matches the current URL. */}                <Switch>                    <Route path="/about">                        <About />                    </Route>                    <Route path="/users">                        <Users />                    </Route>                    <Route path="/">                        <Home />                    </Route>                </Switch>            </div>        </Router>    );}
function Home() {    return <h2>Home</h2>;}
function About() {    return <h2>About</h2>;}
function Users() {    return <h2>Users</h2>;}


初次渲染


下面依次对 BrowserRouter、Switch、Route、Link进行解析。

BrowserRouter


import { Router } from 'react-router';
..._this.history = createBrowserHistory(_this.props);
...
_proto.render = function render() {  return React.createElement(Router, {    history: this.history,    children: this.props.children  });};


其中,Router来自react-router这个库,是react路由的核心组件,其内部维护了一个state。当页面的路由发生变化时,会更新state的location值,从而触发react的re-render。


/*interface Location<S = LocationState> {    pathname: Pathname;    search: Search;    state: S;    hash: Hash;    key?: LocationKey;} */
_this.state = {     location: props.history.location }


props.history,是createBrowserHistory这个函数生成的,createBrowserHistory是来自history这个package,返回了一个对象:


// 请记住这个history对象var history = {    length: globalHistory.length,    action: 'POP',    location: initialLocation,    createHref: createHref,    push: push,    replace: replace,    go: go,    goBack: goBack,    goForward: goForward,    block: block,    listen: listen};return history;


Router组件渲染时,会将上述的方法、对象,传递给需要的childern组件。传递是通过 context 完成的。Router会在childern外包一层 Router.Provider,来提供history对象等信息。


// 这里的 context.Provider 是一个组件。使用的是 mini-create-react-context 这个 package。参考React.createContext
_proto.render = function render() {    return React.createElement(context.Provider, {      children: this.props.children || null,      value: {        history: this.props.history,        location: this.state.location,        match: Router.computeRootMatch(this.state.location.pathname),        staticContext: this.props.staticContext      }    });};


Switch


...
_proto.render = function render() {    var _this = this;
    return React.createElement(context.Consumer, null, function (context) {      !context ? process.env.NODE_ENV !== "production" ? invariant(false, "You should not use <Switch> outside a <Router>") : invariant(false) : void 0;      var location = _this.props.location || context.location;      var element, match; // We use React.Children.forEach instead of React.Children.toArray().find()       React.Children.forEach(_this.props.children, function (child) {        if (match == null && React.isValidElement(child)) {          element = child;          var path = child.props.path || child.props.from;          match = path ? matchPath(location.pathname, _extends({}, child.props, {            path: path          })) : context.match;        }      });      return match ? React.cloneElement(element, {        location: location,        computedMatch: match      }) : null;    });  };


Switch 会找到第一个匹配当前路由的Route,来进行渲染。Switch会在childern外面包一层Router.Comsumer。这个是为了通过context,拿到外层Router组件传递的history对象相关信息传递给Route组件。


Route


Route组件的逻辑也很好理解,首先是通过Router.Consumer拿到history对象等相关信息,经过一些处理后,在children外面包一层Router.Provider, 然后渲染children。之所以要包一层,我理解是为了供children中的Link组件等消费。来看代码:


...
proto.render = function render() {    var _this = this;
    return React.createElement(context.Consumer, null, function (context$1) {      !context$1 ? process.env.NODE_ENV !== "production" ? invariant(false, "You should not use <Route> outside a <Router>") : invariant(false) : void 0;      var location = _this.props.location || context$1.location;      var match = _this.props.computedMatch ? _this.props.computedMatch // <Switch> already computed the match for us      : _this.props.path ? matchPath(location.pathname, _this.props) : context$1.match;
      var props = _extends({}, context$1, {        location: location,        match: match      });
      var _this$props = _this.props,          children = _this$props.children,          component = _this$props.component,          render = _this$props.render; // Preact uses an empty array as children by      // default, so use null if that's the case.
      if (Array.isArray(children) && children.length === 0) {        children = null;      }
      return React.createElement(context.Provider, {        value: props      }, props.match ? children ? typeof children === "function" ? process.env.NODE_ENV !== "production" ? evalChildrenDev(children, props, _this.props.path) : children(props) : children : component ? React.createElement(component, props) : render ? render(props) : null : typeof children === "function" ? process.env.NODE_ENV !== "production" ? evalChildrenDev(children, props, _this.props.path) : children(props) : null);    });    ...


Link

Link组件最终会render一个包裹着Router.Consumer的LinkAnchor组件。Router.Consumer是为了获取外层Router组件的history对象等信息,LinkAnchor绑定了特殊的点击跳转逻辑的<a/>标签。这里先不展开了。


小结


初次渲染后,示例代码会形成下面这样的组件树:

640.png


分析了这么久,可以发现 :react-router-dom 主要的逻辑是处理history对象在整个react应用中的传递以及children的渲染等。history对象的传递是通过context完成的。history对象是由history 这个package中的createBrowserHistory函数生成的。而真正处理路由的核心逻辑, 是在 history 这个package中。

下面,我们来看看点击Link后,会发生什么?


点击Link



点击link后,最终会调用到history对象中的方法来进行路由的切换。


function navigate() {   var location = resolveToLocation(to, context.location);   // 这里的history,就是 createBrowserHistory 方法生成,并且在react组件树中传递的对象   var method = replace ? history.replace : history.push;   method(location);}

下面,进入history中的逻辑:


var href = createHref(location);var key = location.key,    state = location.state;
if (canUseHistory) {  // 调用window.history.pushState  globalHistory.pushState({    key: key,    state: state  }, null, href);
  if (forceRefresh) {    window.location.href = href;  } else {    var prevIndex = allKeys.indexOf(history.location.key);    var nextKeys = allKeys.slice(0, prevIndex + 1);    nextKeys.push(location.key);    allKeys = nextKeys;    // 更新状态。注意,这里的setState可不是react中的setState    setState({      action: action,      location: location    });  }}

我们来看下history中的setState干了什么:


function setState(nextState) {  // 更新history对象  _extends(history, nextState);
  history.length = globalHistory.length;  // 通知订阅者,history已更新。控制react组件重新渲染的关键就在这里  transitionManager.notifyListeners(history.location, history.action);}

其实,在Router组件初始化的时候,就监听了history的更新,下面是Router组件的代码:


...  // 这里的history.listen是history对象提供的方法,用于监听页面history的更新。  _this.unlisten = props.history.listen(function (location) {    if (_this._isMounted) {      _this.setState({        location: location      });    } else {      _this._pendingLocation = location;    }  });
...

可以看到,Router组件监听了history的更新。当页面的history更新时,会调用Router组件的setState,从而完成页面的re-render。


总结


hashHistory的逻辑与BrowserHistory的逻辑类似,本文就不再继续展开了,

到这里,可以简单总结一下,整个react-router的实现思路是:

使用一个第三方的、框架无关的history对象来控制页面的路由变化逻辑。在react侧,使用context来传递history对象,保证路由组件中可以访问到history对象、方便控制路由,并且将history对象与业务组件隔离。使用发布订阅模式,解耦了页面路由的更新与react的更新。

在我们自己的业务组件中,无法直接访问到history对象。如果想直接访问到history对象,可以使用withRouter这个HOC。


写在后面


前端路由系列文章算是告一段落了。本系列文章从最基本的路由原理讲起,到框架的路由实现结束,还算符合预期。不过路由中还涉及到不少的知识点 以及一些高级的功能(比如 keep-alive),值得继续研究

相关文章
|
11天前
|
前端开发 API UED
React 路由守卫 Guarded Routes
【10月更文挑战第26天】本文介绍了 React 中的路由守卫(Guarded Routes),使用 `react-router-dom` 实现权限验证、登录验证和数据预加载等场景。通过创建 `AuthContext` 管理认证状态,实现 `PrivateRoute` 组件进行路由保护,并在 `App.js` 中使用。文章还讨论了常见问题和易错点,提供了处理异步操作的示例,帮助开发者提升应用的安全性和用户体验。
27 1
|
14天前
|
前端开发 安全 网络安全
React——路由Route
React——路由Route
27 2
React——路由Route
|
1天前
|
监控 Java 应用服务中间件
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
9 2
|
1天前
|
存储 安全 Linux
Golang的GMP调度模型与源码解析
【11月更文挑战第11天】GMP 调度模型是 Go 语言运行时系统的核心部分,用于高效管理和调度大量协程(goroutine)。它通过少量的操作系统线程(M)和逻辑处理器(P)来调度大量的轻量级协程(G),从而实现高性能的并发处理。GMP 模型通过本地队列和全局队列来减少锁竞争,提高调度效率。在 Go 源码中,`runtime.h` 文件定义了关键数据结构,`schedule()` 和 `findrunnable()` 函数实现了核心调度逻辑。通过深入研究 GMP 模型,可以更好地理解 Go 语言的并发机制。
|
6天前
|
机器学习/深度学习 编解码 前端开发
探索无界:前端开发中的响应式设计深度解析####
【10月更文挑战第29天】 在当今数字化时代,用户体验的优化已成为网站与应用成功的关键。本文旨在深入探讨响应式设计的核心理念、技术实现及最佳实践,揭示其如何颠覆传统布局限制,实现跨设备无缝对接,从而提升用户满意度和访问量。通过剖析响应式设计的精髓,我们将一同见证其在现代Web开发中的重要地位与未来趋势。 ####
29 7
|
8天前
|
编解码 前端开发 UED
探索无界:前端开发中的响应式设计深度解析与实践####
【10月更文挑战第29天】 本文深入探讨了响应式设计的核心理念,即通过灵活的布局、媒体查询及弹性图片等技术手段,使网站能够在不同设备上提供一致且优质的用户体验。不同于传统摘要概述,本文将以一次具体项目实践为引,逐步剖析响应式设计的关键技术点,分享实战经验与避坑指南,旨在为前端开发者提供一套实用的响应式设计方法论。 ####
31 4
|
14天前
|
消息中间件 缓存 安全
Future与FutureTask源码解析,接口阻塞问题及解决方案
【11月更文挑战第5天】在Java开发中,多线程编程是提高系统并发性能和资源利用率的重要手段。然而,多线程编程也带来了诸如线程安全、死锁、接口阻塞等一系列复杂问题。本文将深度剖析多线程优化技巧、Future与FutureTask的源码、接口阻塞问题及解决方案,并通过具体业务场景和Java代码示例进行实战演示。
34 3
|
17天前
|
缓存 前端开发 JavaScript
"面试通关秘籍:深度解析浏览器面试必考问题,从重绘回流到事件委托,让你一举拿下前端 Offer!"
【10月更文挑战第23天】在前端开发面试中,浏览器相关知识是必考内容。本文总结了四个常见问题:浏览器渲染机制、重绘与回流、性能优化及事件委托。通过具体示例和对比分析,帮助求职者更好地理解和准备面试。掌握这些知识点,有助于提升面试表现和实际工作能力。
51 1
|
17天前
|
前端开发 JavaScript 开发者
揭秘前端高手的秘密武器:深度解析递归组件与动态组件的奥妙,让你代码效率翻倍!
【10月更文挑战第23天】在Web开发中,组件化已成为主流。本文深入探讨了递归组件与动态组件的概念、应用及实现方式。递归组件通过在组件内部调用自身,适用于处理层级结构数据,如菜单和树形控件。动态组件则根据数据变化动态切换组件显示,适用于不同业务逻辑下的组件展示。通过示例,展示了这两种组件的实现方法及其在实际开发中的应用价值。
23 1
|
20天前
|
人工智能 资源调度 数据可视化
【AI应用落地实战】智能文档处理本地部署——可视化文档解析前端TextIn ParseX实践
2024长沙·中国1024程序员节以“智能应用新生态”为主题,吸引了众多技术大咖。合合信息展示了“智能文档处理百宝箱”的三大工具:可视化文档解析前端TextIn ParseX、向量化acge-embedding模型和文档解析测评工具markdown_tester,助力智能文档处理与知识管理。

推荐镜像

更多