真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

前言

10年積累的成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、外貿(mào)營銷網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有瀾滄免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

大多數(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ù)端渲染的優(yōu)點(diǎn)

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

原理解析

先附上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ù)端渲染期間會(huì)被調(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ù)用的,你可能會(huì)問請求數(shù)據(jù)為什么不在beforeCreate或者created中完成,還要專門定義一個(gè)函數(shù)?雖然beforeCreatecreated在服務(wù)端也會(huì)被執(zhí)行(其他周期函數(shù)只會(huì)在客戶端執(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中
  })
 ]
});

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

打包完成后就可以啟動(dòng)服務(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í)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)站名稱:理解vuessr原理并自己搭建簡單的ssr框架
網(wǎng)站鏈接:
http://weahome.cn/article/ppcipc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部