国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

深入理解react-router 路由的實現原理

2024-05-06 15:29:26
字體:
來源:轉載
供稿:網友

React Router 是一個基于 React 之上的強大路由庫,它可以讓你向應用中快速地添加視圖和數據流,同時保持頁面與 URL 間的同步。本文從兩個方便來解析 react-router 實現原理。一:介紹 react-router 的依賴庫history;二:使用 history 庫,實現一個簡單的 react-router 路由。

history 介紹

history 是一個 JavaScript 庫,可讓您在 JavaScript 運行的任何地方輕松管理會話歷史記錄。history 抽象出各種環境中的差異,并提供最小的 API ,使您可以管理歷史堆棧,導航,確認導航以及在會話之間保持狀態。

history 有三種實現方式:

1、BrowserHistory:用于支持 HTML5 歷史記錄 API 的現代 Web 瀏覽器(請參閱跨瀏覽器兼容性)
2、HashHistory:用于舊版Web瀏覽器
3、MemoryHistory:用作參考實現,也可用于非 DOM 環境,如 React Native 或測試

三種實現方法,都是創建了一個 history 對象,這里主要講下前面兩種:

const history = { length: globalHistory.length,  action: "POP",  location: initialLocation, createHref, push, // 改變location replace, go, goBack, goForward, block, listen //監聽路由變化};

1.頁面跳轉實現

BrowserHistory:pushState、replaceState;

HashHistory:location.hash、location.replace

function push(){ createKey(); // 創建location的key,用于唯一標示該location,是隨機生成的 if(BrowserHistory){ globalHistory.pushState({ key, state }, null, href); }else if(HashHistory){ window.location.hash = path; } //上報listener 更新state ...}function replace(){ createKey(); // 創建location的key,用于唯一標示該location,是隨機生成的 if(BrowserHistory){ globalHistory.replaceState({ key, state }, null, href);  }else if(HashHistory){ window.location.replace(window.location.href.slice(0, hashIndex >= 0 ? hashIndex : 0) + "#" path); }  //上報listener 更新state ... }

2.瀏覽器回退

BrowserHistory:popstate;

HashHistory:hashchang;

if(BrowserHistory){ window.addEventListener("popstate", routerChange);}else if(HashHistory){ window.addEventListener("hashchange", routerChange);}function routerChange(){ const location = getDOMLocation(); //獲取location //路由切換 transitionManager.confirmTransitionTo(location,callback=()=>{ //上報listener transitionManager.notifyListeners(); });}

通過 history 實現簡單 react-router

import { Component } from 'react';import createHistory from 'history/createHashHistory';const history = createHistory(); //創建 history 對象/** * 配置路由表 * @type {{"/": string}} */const router = { '/': 'page/home/index', '/my': 'page/my/index'}export default class Router extends Component { state = { page: null } async route(location) { let pathname = location.pathname; let pagePath = router[pathname]; // 加 ./的原因 https://webpack.docschina.org/api/module-methods#import- const Page = await import(`./${pagePath}`); //獲取路由對應的ui //設置ui this.setState({   Page: Page.default  }); } initListener(){ //監聽路由切換 history.listen((location, action) => {  //切換路由后,更新ui  this.route(location); }); } componentDidMount() { this.route(history.location); this.initListener(); } render() { const { Page } = this.state; return Page && <Page {...this.props} />; }}            
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 疏附县| 浮梁县| 永嘉县| 济阳县| 青川县| 许昌市| 武义县| 安龙县| 辽宁省| 三亚市| 迁安市| 滁州市| 普陀区| 林州市| 蒙城县| 巴彦淖尔市| 鄂托克前旗| 梁山县| 常山县| 稻城县| 石首市| 睢宁县| 英吉沙县| 阳西县| 徐水县| 余江县| 文山县| 克拉玛依市| 东兰县| 本溪| 灵丘县| 敖汉旗| 阳原县| 炎陵县| 江陵县| 宁安市| 达州市| 陈巴尔虎旗| 肇庆市| 德钦县| 吴堡县|