溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解Vue CLI3 多頁(yè)應(yīng)用實(shí)踐和源碼設(shè)計(jì)

發(fā)布時(shí)間:2020-08-24 18:24:03 來(lái)源:腳本之家 閱讀:149 作者:dailyvuejs 欄目:web開發(fā)

 對(duì)于一個(gè)網(wǎng)站來(lái)說(shuō),即需要h6頁(yè)面也同時(shí)需要web頁(yè)面,而h6和web頁(yè)面共用很多代碼,不做響應(yīng)式,只能拆分兩個(gè)頁(yè)面來(lái)寫,一個(gè)h6,一個(gè)web.用vue cli3怎么配置h6與web的應(yīng)用呢?

解決思路:

首先,需要產(chǎn)生多頁(yè)面應(yīng)用,用webpack配置成多頁(yè)面應(yīng)用,一個(gè)h6一個(gè)web,這個(gè)網(wǎng)上已經(jīng)有很多教程了,下面會(huì)再整理一次,接著把所有公共的代碼提到多頁(yè)面目錄外面.

我們看一下官網(wǎng)給的 multi-page 的配置:需要在 vue.config.js 配置 pages,示例如下:

pages: {
 index: {
  // page 的入口
  entry: 'src/index/main.js',
  // 模板來(lái)源
  template: 'public/index.html',
  // 在 dist/index.html 的輸出
  filename: 'index.html',
  // 當(dāng)使用 title 選項(xiàng)時(shí),
  // template 中的 title 標(biāo)簽需要是 <title><%= htmlWebpackPlugin.options.title %></title>
  title: 'Index Page',
  // 在這個(gè)頁(yè)面中包含的塊,默認(rèn)情況下會(huì)包含
  // 提取出來(lái)的通用 chunk 和 vendor chunk。
  chunks: ['chunk-vendors', 'chunk-common', 'index']
 },
 // 當(dāng)使用只有入口的字符串格式時(shí),
 // 模板會(huì)被推導(dǎo)為 `public/subpage.html`
 // 并且如果找不到的話,就回退到 `public/index.html`。
 // 輸出文件名會(huì)被推導(dǎo)為 `subpage.html`。
 subpage: 'src/subpage/main.js'
 }

每一個(gè)頁(yè)面中就是一個(gè)對(duì)象,包含了如下配置:

  • entry 入口文件的路徑
  • template 模板文件的路徑
  • filename 編譯之后的 html 文件名
  • title html 中的 title
  • chunks 打包的 chunk 文件,數(shù)組格式,包含入口文件

首先,我們需要設(shè)計(jì)一下 src 目錄下面放置 multi-page 的文件:

看了很多多頁(yè)項(xiàng)目,有 2 個(gè)方案:

  • 一種叫 pages 文件夾
  • 一種叫 views 或者其他名字的文件夾

大家自行選擇或者定義就好了,這里我們選 pages

我們?cè)倏匆幌吕锩娴奈募?/p>

  • 入口文件:文件名可以叫 main.js 或者 index.js
  • 模板文件:可以用統(tǒng)一的 'public/index.html',或者目錄內(nèi)放置一個(gè)自己的,取名 index.html
  • title:可以從一個(gè)文件里面取
src
 pages
 page1
  index.html
  main.js
  App.vue
 page2
  index.html
  main.js
  App.vue 

下面就是通過函數(shù)來(lái)生成 pages 的配置:

第一步:找到入口文件

可以用 glob

const glob = require('glob')

pages 目錄的位置,可以用相對(duì)路徑,也可以用絕對(duì)路徑:

const path = require('path')
const PAGES_PATH = path.resolve(__dirname, './src/pages')

定義一個(gè) pages 對(duì)象:

const pages = {}
glob.sync(PAGES_PATH + '/*/main.js').forEach(filepath => {
 // ...
})

這里就是去設(shè)置對(duì)應(yīng)幾個(gè) key 了,很多項(xiàng)目基本多是通過

/ 分隔符來(lái)對(duì)字符串進(jìn)行數(shù)組話,然后簡(jiǎn)單地獲取

但是熟悉 node.js path 模塊的會(huì)如下處理:

const pageName = path.basename(path.dirname(filepath))

往 pages 里面循環(huán)設(shè)置:

pages[pageName] = {
 entry: filepath,
 filename: `${pageName}.html`,
 chunks: ['chunk-vendors', 'chunk-common', pageName]
 }

關(guān)于 template 稍微復(fù)雜一點(diǎn),我們需要做判斷,如果存在就用自定義的,如果不存在就用通用的

const templatePath = path.dirname(filepath) + '/index.html'

然后通過 fs.existsSync 會(huì)判斷自定義文件是否存在:

if (!fs.existsSync(templatePath)) {
 // 入口如果不配置直接使用
 templatePath = 'public/index.html'
 }

當(dāng)然后面我們分享了源碼之后,你就會(huì)發(fā)現(xiàn)你做了無(wú)用功

下面我們看一下源碼實(shí)現(xiàn)部分:

每個(gè)版本的 cli-service 多有微小的改動(dòng)

cli-service/lib/config/app.js 文件

定義了一個(gè)變量 multiPageConfig 獲取 vue.config.js 取出來(lái)的 pages:

const multiPageConfig = options.pages

清空一次 entry

webpackConfig.entryPoints.clear()

通過 Object.keys 獲取 keys,然后 forEach 循環(huán)

const pages = Object.keys(multiPageConfig)
pages.forEach(name => {
})

循環(huán)內(nèi)部:

先定義要用的變量,從 multiPageConfig[name] 的每一個(gè)對(duì)象?。?/p>

const {
   title,
   entry,
   template = `public/${name}.html`,
   filename = `${name}.html`,
   chunks
  } = normalizePageConfig(multiPageConfig[name])

normalizePageConfig 函數(shù)如下:

處理 subpage: 'src/subpage/main.js' 的情況

const normalizePageConfig = c => typeof c === 'string' ? { entry: c } : c

設(shè)置 entry

webpackConfig.entry(name).add(api.resolve(entry))

hasDedicatedTemplate 是判斷

用戶傳遞的多頁(yè)配置自定義模板路徑是否存在:

const fs = require('fs')
const hasDedicatedTemplate = fs.existsSync(api.resolve(template))

templatePath 的處理細(xì)節(jié):

htmlPath 路徑是:

/Users/*/public/index.html

const htmlPath = api.resolve('public/index.html')

defaultHtmlPath 路徑是:

/Users/*/node_modules/@vue/cli-service/lib/config/index-default.html

const defaultHtmlPath = path.resolve(__dirname, 'index-default.html')

如果:

1、用戶自定義的模板存在就直接給 templatePath
2、如果不存在,先取 public/index.html,再不行就取 node_modules 里面的

const templatePath = hasDedicatedTemplate
   ? template
   : fs.existsSync(htmlPath)
   ? htmlPath
   : defaultHtmlPath

最終通過 html-webpack-plugin 插件來(lái)生成指定名字的 html 文件到指定目錄:

1、指定目錄:

由 vue.config.js 中的 outputDir 來(lái)決定

const outputDir = api.resolve(options.outputDir)

2、生成 webpack config 關(guān)于 html-webpack-plugin 的部分:

const HTMLPlugin = require('html-webpack-plugin')
webpackConfig
   .plugin(`html-${name}`)
   .use(HTMLPlugin, [pageHtmlOptions])

pageHtmlOptions 的處理細(xì)節(jié):

傳遞給 html-webpack-plugin 插件的參數(shù),這里默認(rèn)會(huì)設(shè)置 chunks 的,所以上面實(shí)戰(zhàn)中配置也是無(wú)用功

const pageHtmlOptions = Object.assign({}, htmlOptions, {
   chunks: chunks || ['chunk-vendors', 'chunk-common', name],
   template: templatePath,
   filename: ensureRelative(outputDir, filename),
   title
  })

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI