溫馨提示×

溫馨提示×

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

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

理解vue ssr原理并自己搭建簡單的ssr框架

發(fā)布時(shí)間:2020-09-21 10:31:13 來源:腳本之家 閱讀:177 作者:wmui 欄目:web開發(fā)

前言

大多數(shù)Vue項(xiàng)目要支持SSR應(yīng)該是為了SEO考慮,畢竟對于WEB應(yīng)用來說,搜索引擎是一個(gè)很大的流量入口。Vue SSR現(xiàn)在已經(jīng)比較成熟了,但是如果是把一個(gè)SPA應(yīng)用改造成SSR應(yīng)用,成本還是有些高的,這工作量無異于重構(gòu)前端。另外對前端的技術(shù)要求也是挺高的,需要對Vue比較熟悉,還要有Node.js 和 webpack 的應(yīng)用經(jīng)驗(yàn)。

引入

Vue是一個(gè)構(gòu)建客戶端應(yīng)用的框架,即vue組件是在瀏覽器中進(jìn)行渲染的。所謂服務(wù)端渲染,指的是把vue組件在服務(wù)器端渲染為組裝好的HTML字符串,然后將它們直接發(fā)送到瀏覽器,最后需要將這些靜態(tài)標(biāo)記"激活"為客戶端上完全可交互的應(yīng)用程序。

服務(wù)端渲染的優(yōu)點(diǎn)

  • 更好的SEO,搜索引擎爬蟲可以抓取渲染好的頁面
  • 更快的內(nèi)容到達(dá)時(shí)間(首屏加載更快),因?yàn)榉?wù)端只需要返回渲染好的HTML,這部分代碼量很小的,所以用戶體驗(yàn)更好

服務(wù)端渲染的缺點(diǎn)

  • 首先就是開發(fā)成本比較高,比如某些聲明周期鉤子函數(shù)(如beforeCreate、created)能同時(shí)運(yùn)行在服務(wù)端和客戶端,因此第三方庫要做特殊處理,才能在服務(wù)器渲染應(yīng)用程序中運(yùn)行。
  • 由于服務(wù)端渲染要用Nodejs做中間層,所以部署項(xiàng)目時(shí),需要處于Node.js server運(yùn)行環(huán)境。在高流量環(huán)境下,還要做好服務(wù)器負(fù)載和緩存策略

原理解析

先附上demo地址:https://github.com/wmui/vue-ssr-demo

第一步:編寫entry-client.js和entry-server.js

entry-client.js只在瀏覽器環(huán)境下執(zhí)行,所以需要顯示調(diào)用$mount方法,掛載DOM節(jié)點(diǎn)

import Vue from 'vue';
import App from './App.vue';
import createStore from './store/index.js';

function createApp() {
 const store = createStore();
 const app = new Vue({
   store,
   render: h => h(App)
 });
 return {app, store}
}

const { app, store } = createApp();

// 使用window.__INITIAL_STATE__中的數(shù)據(jù)替換整個(gè)state中的數(shù)據(jù),這樣服務(wù)端渲染結(jié)束后,客戶端也可以自由操作state中的數(shù)據(jù)
if (window.__INITIAL_STATE__) {
 store.replaceState(window.__INITIAL_STATE__);
}

app.$mount('#app');

entry-server.js需要導(dǎo)出一個(gè)函數(shù),在服務(wù)端渲染期間會被調(diào)用

import Vue from 'vue';
import App from './App.vue';
import createStore from './store/index.js';

export default function(context) {
 // context是上下文對象
 const store = createStore();
 let app = new Vue({
  store,
  render: h => h(App)
 });

 // 找到所有 asyncData 方法
 let components = App.components;
 let asyncDataArr = []; // promise集合
 for (let key in components) {
  if (!components.hasOwnProperty(key)) continue;
  let component = components[key];
  if (component.asyncData) {
   asyncDataArr.push(component.asyncData({store})) // 把store傳給asyncData
  }
 }
 // 所有請求并行執(zhí)行
 return Promise.all(asyncDataArr).then(() => {
  // context.state 賦值成什么,window.__INITIAL_STATE__ 就是什么
  // 這下你應(yīng)該明白entry-client.js中window.__INITIAL_STATE__是哪來的了,它是在服務(wù)端渲染期間被添加進(jìn)上下文的
  context.state = store.state;
  return app;
 });
};

上面的asyncData是干嘛用的?其實(shí),這個(gè)函數(shù)是專門請求數(shù)據(jù)用的,你可能會問請求數(shù)據(jù)為什么不在beforeCreate或者created中完成,還要專門定義一個(gè)函數(shù)?雖然beforeCreatecreated在服務(wù)端也會被執(zhí)行(其他周期函數(shù)只會在客戶端執(zhí)行),但是我們都知道請求是異步的,這就導(dǎo)致請求發(fā)出后,數(shù)據(jù)還沒返回,渲染就已經(jīng)結(jié)束了,所以無法把 Ajax 返回的數(shù)據(jù)也一并渲染出來。因此需要想個(gè)辦法,等到所有數(shù)據(jù)都返回后再渲染組件

asyncData需要返回一個(gè)promise,這樣就可以等到所有請求都完成后再渲染組件。下面是在foo組價(jià)中使用asyncData的示例,在這里完成數(shù)據(jù)的請求

export default {
 asyncData: function({store}) {
  return store.dispatch('GET_ARTICLE') // 返回promise
 },
 computed: {
  article() {
   return this.$store.state.article
  }
 }
}

第二步:配置webpack

webpack配置比較簡單,但是也需要針對client和server端單獨(dú)配置

webpack.client.conf.js顯然是用來打包客戶端應(yīng)用的

module.exports = merge(base, {
 entry: {
  client: path.join(__dirname, '../entry-client.js')
 }
});

webpack.server.conf.js用來打包服務(wù)端應(yīng)用,這里需要指定node環(huán)境

module.exports = merge(base, {
 target: 'node', // 指定是node環(huán)境
 entry: {
  server: path.join(__dirname, '../entry-server.js')
 },
 output: {
  filename: '[name].js', // server.js
  libraryTarget: 'commonjs2' // 必須按照 commonjs規(guī)范打包才能被服務(wù)器調(diào)用。
 },
 plugins: [
  new HtmlWebpackPlugin({
   template: path.join(__dirname, '../index.ssr.html'),
   filename: 'index.ssr.html',
   files: {
    js: 'client.js'
   }, // client.js需要在html中引入
   excludeChunks: ['server'] // server.js只在服務(wù)端執(zhí)行,所以不能打包到html中
  })
 ]
});

第三步:啟動服務(wù)

打包完成后就可以啟動服務(wù)了,在start.js中我們需要把server.js加載進(jìn)來,然后通過renderToString方法把渲染好的html返回給瀏覽器

const bundle = fs.readFileSync(path.resolve(__dirname, 'dist/server.js'), 'utf-8');
const renderer = require('vue-server-renderer').createBundleRenderer(bundle, {
 template: fs.readFileSync(path.resolve(__dirname, 'dist/index.ssr.html'), 'utf-8') // 服務(wù)端渲染數(shù)據(jù)
});


server.get('*', (req, res) => {
 renderer.renderToString((err, html) => {
  // console.log(html)
  if (err) {
   console.error(err);
   res.status(500).end('服務(wù)器內(nèi)部錯(cuò)誤');
   return;
  }
  res.end(html);
 })
});

效果圖

demo已經(jīng)上傳到github:https://github.com/wmui/vue-ssr-demo

理解vue ssr原理并自己搭建簡單的ssr框架

結(jié)語

個(gè)人實(shí)踐Vue SSR已有一段時(shí)間,發(fā)現(xiàn)要想搭建一套完整的 SSR 服務(wù)框架還是很有挑戰(zhàn)的,或許 Nuxt 是一個(gè)不錯(cuò)的選擇,對 Nuxt 感興趣的朋友可以參考我的一個(gè)開源小作品Essay

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

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

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

AI