摘要:我們按照提供的思路,對路由按業務模塊進行拆分。這時就可以使用到了打包入口文件自動引入子目錄下所有文件參考分享使用的實現路由去中心化管理之用法的基礎組件的自動化全局注冊官方文檔
概述
You can create your own context with the require.context() function.
It allows you to pass in a directory to search, a flag indicating whether subdirectories should be searched too, and a regular expression to match files against.
webpack parses for require.context() in the code while building.
webpack文檔 - require.context
require.context是webpack中,用來創建自己的(模塊)上下文;解析
webpack會在代碼構建的時候去解析該函數
require.context(directory, useSubdirectories = false, regExp = /^.//);
該方法有3個參數:
需要搜索的文件夾目錄(必傳)
是否需要搜索它的子孫目錄,默認為false
匹配文件名的正則表達式
例子// 示例 const test = require.context("./string", false, /.js$/);
我的目錄結構如下:
String
trim.js
trimLeft.js
trimRight.js
test
test1.js
*
這時候如果console.log(test),就會發現調用require.context之后返回的是一個函數
webpackContext(req) { var id = webpackContextResolve(req); return __webpack_require__(id); }
這次如果還需要深入就需要去webpack打包之后的文件中尋找了:
var map = { "./test/test1.js": "./src/string/test/test1.js", "./trim.js": "./src/string/trim.js", "./trimLeft.js": "./src/string/trimLeft.js", "./trimRight.js": "./src/string/trimRight.js" }; function webpackContext(req) { var id = webpackContextResolve(req); return __webpack_require__(id); } function webpackContextResolve(req) { var id = map[req]; if(!(id + 1)) { // check for number or string var e = new Error("Cannot find module "" + req + """); e.code = "MODULE_NOT_FOUND"; throw e; } return id; } webpackContext.keys = function webpackContextKeys() { return Object.keys(map); }; webpackContext.resolve = webpackContextResolve; module.exports = webpackContext; webpackContext.id = "./src/string sync recursive .js$";
由上面的代碼可以看出,在webpackContext定義了多個方法和屬性
console.log(webpackContext.id) // "./src/string sync recursive .js$" console.log(webpackContext("./trim.js")) // "./src/string/trim.js" console.log(webpackContext.keys()) // ["./test/test1.js", "./trim.js", "./trimLeft.js", "./trimRight.js"]使用場景 vue中的基礎組件的自動化全局注冊
具體就不多說了,直接看文檔
vue官方文檔 - 基礎組件的自動化全局注冊
當你的單頁應用變成了大型應用后,路由也在慢慢的增多
// rootRoute.js const rootRoute = { childRoutes: [ { path: "/", component: AppLayout, childRoutes: [ { path: "shop", // 購買詳情頁 component: ShopLayout, childRoutes: [ { path: "foodDetail", component: FoodDetail }, { path: "shoesDetail", component: ShoesDetail } // 其他 ] }, { path: "order", // 訂單頁 component: Order, childRoutes: [ { path: "remark", //訂單備注 component: Remark }, { path: "invoice", //發票抬頭 component: Invoice }, { path: "payment", //付款頁面 component: Payment }, { path: "userValidation", //用戶驗證 component: UserValidation }, { path: "chooseAddress", //選擇地址 component: ChooseAddress, childRoutes: [ { path: "addAddress", //添加地址 component: AddAddress, childRoutes: [ { path: "searchAddress", //搜索地址 component: SearchAddress } ] } ] } ] } // ... // 大量新增路由 // ... ] } ] };
當路由變的越來越大,大到已經難以維護時。我們按照react-router提供的思路,對路由按業務模塊進行拆分。
// rootRoute.js const rootRoute = { childRoutes: [ { path: "/", component: AppLayout, childRoutes: [ require("./modules/shop/route"), //購買詳情頁 require("./modules/order/route"), // 訂單頁 require("./modules/login/route"), // 登錄注冊頁 require("./modules/service/route"), // 服務中心 // ... // 其他大量新增路由 // ... ] } ] };
再進一步優化的話,就可以使用require.context
const rootRoute = { childRoutes: [ { path: "/", component: AppLayout, childRoutes: (r => { return r.keys().map(key => r(key)); })(require.context("./", true, /^./modules/((?!/)[sS])+/route.js$/)) } ] };自動引用目錄下的文件
比如我現在想要造一個自己的工具庫utils,那么隨著工具函數數量的增加,勢必需要將代碼分割得更小,甚至細化到一個工具函數對應一個js文件。
這時如果還需要在入口js文件中一個個手動引用,那么每增加一個js文件,就需要重新去修改入口js一次,工程量是非常大的。
這時就可以使用到require.context了~
/** * @desc webpack打包入口文件 * @example 自動引入子目錄下所有js文件 */ let moduleExports = {}; const r = require.context("./", true, /^./.+/.+.js$/); r.keys().forEach(key => { let attr = key.substring(key.lastIndexOf("/") + 1, key.lastIndexOf(".")); moduleExports[attr] = r(key); }); module.exports = moduleExports;參考
分享:使用 webpack 的 require.context 實現路由“去中心化”管理
webpack 之 require.context 用法
vue的基礎組件的自動化全局注冊
webpack官方文檔 - require-context
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/99443.html
摘要:可以做做不到的事情。看完這段代碼就不難理解文檔中所說的會返回一個帶有個的函數了。進階深入探究源碼我們知道在版本后,在加載模塊時,可以指定模塊加載模式,我們能使用幾種方式來控制我們要加載的模塊。 前言 require.context 其實是一個非常實用的 api。但是 3-4 年過去了,卻依舊還有很多人不知道如何使用。 而這個 api 主要為我們做什么樣的事情?它可以幫助我們動態加載我們...
摘要:原文發布與抹橋的博客翻譯向指南上前置定義代碼包代碼塊安裝代碼分割代碼分割是中最引人注目的功能之一。回調函數一個回調函數會被執行一次當所有依賴都被加載以后。對象的實現作為一個參數傳遞給這個回調函數。 原文發布與 抹橋的博客 -【翻譯向】webpack2 指南(上) 前置定義 Bundle 代碼包Chunk 代碼塊 安裝 npm install webpack --save-dev 代碼分...
摘要:依賴管理該條已在中文網存在,點擊這里表達式來調用當你的請求包含表達式,那個一個上下文環境將被創建。一個包含所有父文件夾和子及后代文件夾中以結尾的文件的上下文。一個函數,返回一個數組,包含上下文模塊能夠處理的所有的請求。 依賴管理 Dependency Management 該條已在webpack2.x中文網存在,點擊這里 es6 modules commonjs amd 表達式...
摘要:直到最近在使用微信機器人時,遇到了強烈的需求。增刪文件后熱更新上面的代碼已經不小心實現了增加文件后熱更新,因為表示檢測的更新,如果增加一個,那么就變成,于是新模塊不等于老模塊不存在,從而使用注冊事件監聽器。 背景 剛思考這個話題的時候,首先想到的是 Vue 或 React 的組件熱更新(基于 Webpack HMR),后來又想到了 Lua、Erlang 等語言的熱更新,不過在實際開發 ...
摘要:需求背景是這樣,下有個文件,在中導出所有的文件,需要做到在新增文件時,自動引入到中。 需求背景是這樣,./api/modules/下有n個js文件,在./api/index中導出所有modules的js文件,需要做到在modules新增js文件時,自動引入到./api/index中。因為在網上找不到好的解決方案,只能自己動手了 那么我就需要一個可以需求所有文件列表的api,也就是req...
閱讀 3464·2021-11-22 12:00
閱讀 681·2019-08-29 13:24
閱讀 2915·2019-08-29 11:31
閱讀 2605·2019-08-26 14:00
閱讀 3210·2019-08-26 11:42
閱讀 2484·2019-08-23 18:31
閱讀 809·2019-08-23 18:27
閱讀 2858·2019-08-23 16:58