最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

Vue SSR 組件加載問題

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:15:42
文檔

Vue SSR 組件加載問題

Vue SSR 組件加載問題:Node 端渲染提示 window/document 沒有定義 業(yè)務(wù)場(chǎng)景 首先來看一個(gè)簡(jiǎn)單的 Vue 組件 test.vue <template> <div> <h2>clientHeight: {{ clientHeight }} px </h2> </div> <
推薦度:
導(dǎo)讀Vue SSR 組件加載問題:Node 端渲染提示 window/document 沒有定義 業(yè)務(wù)場(chǎng)景 首先來看一個(gè)簡(jiǎn)單的 Vue 組件 test.vue <template> <div> <h2>clientHeight: {{ clientHeight }} px </h2> </div> <

Node 端渲染提示 window/document 沒有定義

業(yè)務(wù)場(chǎng)景

首先來看一個(gè)簡(jiǎn)單的 Vue 組件 test.vue

<template>
 <div>
 <h2>clientHeight: {{ clientHeight }} px </h2>
 </div>
</template>

<script type="text/babel">
 export default {
 data(){
 return {
 }
 },
 computed :{
 clientHeight() {
 return document.body.clientHeight;
 }
 },
 mounted(){
 }
 }
</script>

上面 test.vue 組件通過 Vue computed 屬性 clientHeight 直接獲取 document 的文檔高度,這段代碼在前端渲染是不會(huì)報(bào)錯(cuò)的,也能拿到正確的值。但如果把這個(gè)組件放到 SSR(Server Side Render) 模式下, 就會(huì)報(bào)如下錯(cuò)誤:
ReferenceError: document is not defined

解決方案

通過 typeof 判斷是否是存在 document 對(duì)象, 如果存在則執(zhí)行后面代碼。 這種方式雖然能解決問題, 但在 Webpack 構(gòu)建壓縮時(shí), 不會(huì)執(zhí)行的代碼不會(huì)被剔除,也會(huì)打包到 js 文件中去, 因?yàn)檫@個(gè)是在運(yùn)行期才知道結(jié)果的, 所以在 Webpack 構(gòu)建方案中,不建議使用 typeof 方式判斷。而是使用 Webpack 提供的 webpack.DefinePlugin 插件定義常量解決。

clientHeight() {
 return typeof document === 'object' ? document.body.clientHeight : '';
}

使用 Webpack 提供的 webpack.DefinePlugin 插件定義常量解決。 這里直接使用 easywebpack     https:// github.com/hubcarl/easy    webpack   內(nèi)置的全局 Webpack 常量 EASY_ENV_IS_BROWSER  http:// hubcarl.github.io/easyw ebpack/webpack/env   進(jìn)行 判斷。 這樣在構(gòu)建壓縮期間, 如果是 Node 模式構(gòu)建, EASY_ENV_IS_BROWSER 會(huì)被替換為 false,如果是 Browser 模式構(gòu)建, EASY_ENV_IS_BROWSER 會(huì)被替換為 true,最后構(gòu)建后代碼也就是變成了 true 或者 false 的常量。 因?yàn)檫@個(gè)是構(gòu)建期間執(zhí)行的,壓縮插件剔除永遠(yuǎn)不會(huì)被執(zhí)行的代碼, 也就是

dead_code
clientHeight() {
 return EASY_ENV_IS_BROWSER ? document.body.clientHeight : '';
}

NPM Vue 組件 SSR 支持

針對(duì)上面這種自己寫的代碼,我們可以通過這種方式解決,因?yàn)榭梢灾苯有薷摹5绻覀円氲囊粋€(gè) npm Vue 插件想進(jìn)行SSR渲染, 但這個(gè)插件里面使用了 window/docment 等瀏覽器對(duì)象, 并沒有對(duì) SSR 模式進(jìn)行兼容,這個(gè)時(shí)候該如何解決呢?

一般我們通過 通過 v-if 來決定是否渲染該組件 和 Vue 只在前端掛載組件解決問題 可以解決。

通過 v-if 來決定是否渲染該組件

<template>
 <div v-if="isBrowser">
 <Loading></Loading>
 </div>
</template>
<script type="text/babel">
 export default {
 componets:{
 Loading: () =>import('vue-loading');
 }
 data(){
 return {
 isBrowser: EASY_ENV_IS_BROWSER
 }
 },
 mounted(){
 }
 }
</script>

Vue 只在前端掛載組件解決問題

<template>
 <div>
 <Loading></Loading>
 </div>
</template>

<script type="text/babel">
 export default {
 data(){
 return {
 }
 },
 beforeMount() {
 // 只會(huì)在瀏覽器執(zhí)行 
 this.$options.components.Loading = () =>import('vue-loading');
 },
 mounted(){
 }
 }
</script>

loading 組件因?yàn)闆]有注冊(cè), 在 SSR 模式, <Loading></Loading> 會(huì)被原樣輸出到 HTML 中,不會(huì)報(bào)錯(cuò)且不能被瀏覽器識(shí)別, 在顯示時(shí)不會(huì)有內(nèi)容。當(dāng) SSR 直出 HTML 后,瀏覽器模式中執(zhí)行 beforeMount 掛載組件, 從而達(dá)到解決服務(wù)端渲染報(bào)錯(cuò)的問題

https:// github.com/hubcarl/egg- vue-webpack-boilerplate/blob/master/app/web/page/dynamic/dynamic.vue

總結(jié)

以上所述是小編給大家介紹的Vue SSR 組件加載問題,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Vue SSR 組件加載問題

Vue SSR 組件加載問題:Node 端渲染提示 window/document 沒有定義 業(yè)務(wù)場(chǎng)景 首先來看一個(gè)簡(jiǎn)單的 Vue 組件 test.vue <template> <div> <h2>clientHeight: {{ clientHeight }} px </h2> </div> <
推薦度:
標(biāo)簽: 加載 VUE ssr
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top