Vue中怎麼進行網頁預渲染?這篇文章跟大家介紹Vue使用prerender-spa-plugin進行網頁預渲染的方法,希望對大家有幫助!
通常情況下,Vue項目是單頁項目,也就是渲染出來的項目,只有一個index.html
。 【相關推薦:vue.js影片教學】
這樣的缺點很明顯:
try_files $uri $ uri/ /index.html
內部重定向,才可以用透過路由存取頁面。 而預先渲染,就是把原來的單一index.html
,渲染成多個目錄,每個目錄都有一個index.html
。這樣就不需要內部重定向存取路由,也更利於搜尋引擎收錄。
本次預渲染使用prerender-spa-plugin預先渲染。
它的主要原理是啟動瀏覽器,渲染完成後抓取HTML,然後再建立目錄,儲存為index.html
。
注意:
安裝
首先,我們用npm進行安裝:
npm i prerender-spa-plugin
#需要注意,因為
prerender-spa-plugin
會安裝一個Chromium,所以安裝會比較久。
當然,這種依賴,只有在打包時候才會使用。所以,更好的安裝方式,應該是:
npm i prerender-spa-plugin -D
現在,我們就來專案引用,使用方法很簡單,方便在兩個地方追加:
#App.vue
##首先,我們在App.vue內追加觸發器事件:
mounted() { document.dispatchEvent(new Event('render-event')) }新增這個觸發器,是後續打包時候,會自動觸發,並完成渲染。
vue.config.js
根據prerender-spa-plugin專案文件:
const path = require('path') const PrerenderSPAPlugin = require('prerender-spa-plugin') module.exports = { plugins: [ ... new PrerenderSPAPlugin({ // Required - The path to the webpack-outputted app to prerender. staticDir: path.join(__dirname, 'dist'), // Required - Routes to render. routes: [ '/', '/about', '/some/deep/nested/route' ], }) ] }同時一些進階使用需要引入
PuppeteerRenderer進行自訂。所以,我自己的
vue.config.js設定:
module.exports = { …… chainWebpack: config => { if (process.env.NODE_ENV == "development") { …… } if (process.env.NODE_ENV == "production") { config.plugin("PrerenderSPAPlugin").use('prerender-spa-plugin', [ { staticDir: path.join(__dirname, 'dist'), routes: [ '/', '/processIMG', '/statisticsChars', '/generatePWD', '/calculateTheDate', '/randomNumber', '/textBase64', '/curl', '/mcstatus', '/gh', '/about', '/mdv' ], renderer: new PuppeteerRenderer({ headless: false, executablePath: '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome', // 对应App.vue renderAfterDocumentEvent: 'render-event', }), }]) ]) } }我使用的是鍊式函數。這樣的好處,就是方便我進行
if-else等函數式判斷。
其中,
renderer屬性:
:這個就是Chrome的
headless屬性,常用於Debug。更多可以參考:
Google Chrome
:重定向瀏覽器位址;我這裡重定向使用我電腦自帶的Chrome瀏覽器了。 (可選,可以直接不加,預設呼叫Chromium)
:需要同App.vue中document.dispatchEvent(new Event('render-event'))的事件名稱要對應上。
routes數組,裡面就是需要預先渲染的路由位址。
需要指向編譯後的輸出資料夾。 打包項目
npm run build
打包後的效果:
看看預先渲染的頁面:
因為我有使用Vue-meta的元件,所以預先渲染的檔案也就有meta屬性了。
如果你也想用Vue-meta组件配合
prerender-spa-plugin
,可以参考文章:https://juejin.cn/post/7056972997894094861
需要注意,如果出现什么错误,可以尝试:
# 删除项目node_modules rm -rf node_modules # 重新安装 npm install
这样的文件,就可以进行部署了。
我们使用Nginx进行部署,上次到Nginx Web文件夹内,修改config
文件,就不需要:
location / { try_files $uri $uri/ /index.html; }
来实现内部重定向了。因为有真实的目录,可以去掉。
但是,数据代理,最好使用Nginx来实现。比如,开发环境,数据代理:
config.devServer.proxy({ '/dataApiJava': { target: JavaBaseURL, pathRewrite: {'^/dataApiJava': ""}, ws: true, changeOrigin: true }, '/dataApiPython': { target: PythonBaseURL, pathRewrite: {'^/dataApiPython': ""}, ws: true, changeOrigin: true }, '/ghs': { target: GithubSpeedURL, pathRewrite: {'^/ghs': ""}, ws: true, changeOrigin: true } } )
对应的Nginx配置,可以这样写:
location /dataApiPython/{ proxy_pass http://127.0.0.1:8099/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header REMOTE-HOST $remote_addr; add_header X-Cache $upstream_cache_status; } location /dataApiJava/ { proxy_ssl_server_name on; proxy_pass https://…….cn/; } location /ghs/ { proxy_ssl_server_name on; proxy_pass https://……/gh/; }
给大家展示三种配置,按需设置哦。
到此,我们的前端预渲染就完成了。这样SEO好。但是对比SSR,还是优点欠缺。好处就是部署和配置方便,坏处就是构建麻烦,如果你页面有几十个路由需要预渲染,那么prerender-spa-plugin渲染起来就没SSR方便了。
改天有机会和大家分享分享SSR吧,真不错,又挖一个坑。
另外,是不是有小伙伴好奇,我截图里出现的CompressionPlugin
属性?其实是gz压缩啦。有机会和大家分享,使用compression-webpack-plugin
来优化项目。
更多编程相关知识,请访问:编程入门!!
以上是Vue中怎麼進行網頁預渲染? prerender-spa-plugin的用法淺析的詳細內容。更多資訊請關注PHP中文網其他相關文章!