成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術(shù)文章
文章詳情頁

vue 動態(tài)給每個頁面添加title、關(guān)鍵詞和描述的方法

瀏覽:156日期:2022-12-03 10:38:58

前言:直接寫html加title和關(guān)鍵詞想必大家都知道怎么去加,但用vue框架開發(fā)的項(xiàng)目我們怎么去動態(tài)的給每個頁面添加呢 ↓

先在router.js里面配置我們的title、關(guān)鍵詞和描述

{path: ’/train’,name: ’Train’,component: () => import(’../components/page/Train.vue’),meta: {title: ’教師培訓(xùn)-恩啟官網(wǎng)’,content: {keywords: ’教師培訓(xùn)、恩啟培訓(xùn)、恩啟云課堂、特教老師、線上服務(wù)、徐紫薇、王學(xué)鋼’,description: ’恩啟教師培訓(xùn)專注于自閉癥行業(yè)教師專業(yè)技能提升培訓(xùn),評估師培訓(xùn)。為自閉癥康復(fù)教師提供科學(xué)、系統(tǒng)的在線課程、咨詢服務(wù)。’}}},

在main.js里用beforeEach(前置守衛(wèi))判斷

router.beforeEach((to, from, next) => {if (to.meta.content) {let head = document.getElementsByTagName(’head’);let meta = document.createElement(’meta’);document.querySelector(’meta[name='keywords']’).setAttribute(’content’, to.meta.content.keywords)document.querySelector(’meta[name='description']’).setAttribute(’content’, to.meta.content.description)meta.content = to.meta.content;head[0].appendChild(meta)}if (to.meta.title) {document.title = to.meta.title;}next()});

這樣就行了。

后續(xù)補(bǔ)充:vue的特點(diǎn)呢就是組件系統(tǒng)跟數(shù)據(jù)驅(qū)動,嗯,是特別方便的,比如我們一個組件里根據(jù)路由狀態(tài)值判斷初始化加載不同的頁面(比如在前一個頁面有三個按鈕:北京、上海、深圳)點(diǎn)擊進(jìn)去不同的城市頁面,但我們的頁面都是用的同一個組件,如下路由配置:↓

{path: ’/cityDetail’,name: ’CityDetail’,component: () => import(’../components/page/CityDetail.vue’),meta: {title: ’’,content: {keywords: ’’,description: ’’}}},

這里我們再router.js里沒進(jìn)行關(guān)鍵詞的填寫,因?yàn)樗泻脦讉€不同城市加載,我們可以在對應(yīng)的組件里加個判斷

if(orgUrl == ’beijing’){ document.querySelector(’meta[name='keywords']’).setAttribute(’content’, ’北京教研中心,恩啟教研中心,IEDA教研中心’) document.querySelector(’meta[name='description']’).setAttribute(’content’, ’恩啟誕生于2014年 ,是一家專業(yè)的自閉癥康復(fù)機(jī)構(gòu)。北京教研中心,位于北京市朝陽區(qū)孫河地鐵站對面弘園五號創(chuàng)意生活園A5,聯(lián)系方式13021253543,北京教研中心。’) document.title = ’恩啟IDEA·北京教研中心-直營連鎖-恩啟官網(wǎng)’;}else if(orgUrl == ’shanghai’){ document.querySelector(’meta[name='keywords']’).setAttribute(’content’,’上海靜安教研中心,恩啟教研中心,IEDA教研中心’); document.querySelector(’meta[name='description']’).setAttribute(’content’, ’恩啟IDEA靜安中心坐落于上海市大寧中心廣場,毗鄰大寧音樂中心,交通便利,生活便捷。’); document.title=’恩啟IDEA·上海靜安教研中心-直營連鎖-恩啟官網(wǎng)’;}

這樣設(shè)置就ok了;

總結(jié)

到此這篇關(guān)于vue 動態(tài)給每個頁面添加title、關(guān)鍵詞和描述的方法的文章就介紹到這了,更多相關(guān)vue 添加title、關(guān)鍵詞和描述內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Vue
相關(guān)文章: