国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

vue-meta讓你更優(yōu)雅的管理頭部標簽

leone / 3453人閱讀

摘要:在應用中,如果想要修改的頭部標簽,或許,你會在代碼里,直接這么做改下引入一段修改信息,或者給標簽添加屬性此處省略一大坨代碼今天給大家介紹一種更優(yōu)雅的方式,去管理頭部標簽介紹借用上的介紹,基于的插件,主要用于管理頭部標簽,同時也支持。

在 Vue SPA 應用中,如果想要修改HTML的頭部標簽,或許,你會在代碼里,直接這么做:

// 改下title
document.title = "what?"
// 引入一段script
let s = document.createElement("script")
s.setAttribute("src", "./vconsole.js")
document.head.appendChild(s)
// 修改meta信息,或者給html標簽添加屬性...
// 此處省略一大坨代碼...

今天給大家介紹一種更優(yōu)雅的方式,去管理頭部標簽 vue-meta

vue-meta介紹
Manage page meta info in Vue 2.0 components. SSR + Streaming supported. Inspired by react-helmet.

借用 vue-meta github 上的介紹,基于Vue 2.0 的 vue-meta 插件,主要用于管理HMTL頭部標簽,同時也支持SSR。

vue-meta有以下特點:

在組件內(nèi)設置 metaInfo,便可輕松實現(xiàn)頭部標簽的管理

metaInfo 的數(shù)據(jù)都是響應的,如果數(shù)據(jù)變化,頭部信息會自動更新

支持 SSR

如何使用

在介紹如何使用之前,先和大家普及一個最近很火的名詞 服務端渲染(SSR, Server Side Render),簡單來講,就是在訪問某個頁面時,服務端會把渲染好的頁面,直接返回給瀏覽器。

我們知道 vue-meta 是支持SSR的,下面的介紹分成兩部分:

Client 客戶端

在入口文件中,install vue-meta plugin

import Vue from "vue"
import VueRouter from "vue-router"
import VueMeta from "vue-meta"

Vue.use(VueRouter)
Vue.use(VueMeta)

/* eslint-disable no-new */
new Vue({
  el: "#app",
  router,
  template: "",
  components: { App }
})

然后就可以在組件中使用了

export default {
  data () {
    return {
      myTitle: "標題"
    }
  },
  metaInfo: {
    title: this.myTitle,
    titleTemplate: "%s - by vue-meta",
    htmlAttrs: {
      lang: "zh"
    },
    script: [{innerHTML: "console.log("hello hello!")", type: "text/javascript"}],
    __dangerouslyDisableSanitizers: ["script"]
  },
  ...
}

可以看一下頁面顯示

熟悉 Nuxt.js 的同學,會發(fā)現(xiàn)配置 meta info 的 keyName 不一致??梢酝ㄟ^下面的配置方法來修改:

// vue-meta configuration  
Vue.use(Meta, {
  keyName: "head", // the component option name that vue-meta looks for meta info on.
  attribute: "data-n-head", // the attribute name vue-meta adds to the tags it observes
  ssrAttribute: "data-n-head-ssr", // the attribute name that lets vue-meta know that meta info has already been server-rendered
  tagIDKeyName: "hid" // the property name that vue-meta uses to determine whether to overwrite or append a tag
})

更加全面詳細的api,可以參考 vue-meta github

Server 服務端 Step 1. 將 $meta 對象注入到上下文中

server-entry.js:

import app from "./app"

const router = app.$router
const meta = app.$meta() // here

export default (context) => {
  router.push(context.url)
  context.meta = meta // and here
  return app
}

$meta 主要提供了,injectrefresh 方法。inject 方法,用在服務端,返回設置的metaInfo ;refresh 方法,用在客戶端,作用是更新meta信息。

Step 2. 使用 inject() 方法 輸出頁面

server.js:

app.get("*", (req, res) => {
  const context = { url: req.url }
  renderer.renderToString(context, (error, html) => {
    if (error) return res.send(error.stack)
    const bodyOpt = { body: true }
    const {
      title, htmlAttrs, bodyAttrs, link, style, script, noscript, meta
    } = context.meta.inject()
    return res.send(`
      
      
        
          ${meta.text()}
          ${title.text()}
          ${link.text()}
          ${style.text()}
          ${script.text()}
          ${noscript.text()}
        
        
          ${html}
          
          
          ${script.text(bodyOpt)}
        
      
    `)
  })
})
源碼分析

前面說了 vue-meta 的使用方法,或許大家會想這些功能是怎么實現(xiàn)的,那下面就和大家分享一下源碼。

怎么區(qū)分 client 和 server渲染?

vue-meta 會在 beforeCreate() 鉤子函數(shù)中,將組件中設置的 metaInfo ,放在 this.$metaInfo 中。我們可以在其他生命周期中,訪問 this.$metaInfo 下的屬性。

if (typeof this.$options[options.keyName] === "function") {
  if (typeof this.$options.computed === "undefined") {
    this.$options.computed = {}
  }
  this.$options.computed.$metaInfo = this.$options[options.keyName]
}

vue-meta 會在created等生命周期的鉤子函數(shù)中,監(jiān)聽 $metaInfo 的變化,如果發(fā)生改變,就調(diào)用 $meta 下的 refresh 方法。這也是 metaInfo 做到響應的原因。

created () {
  if (!this.$isServer && this.$metaInfo) {
    this.$watch("$metaInfo", () => {
      batchID = batchUpdate(batchID, () => this.$meta().refresh())
    })
  }
},

Server端,主要是暴露 $meta 下的 inject 方法,調(diào)用 inject 方法,會返回對應的信息。

client 和 server端 是如何修改標簽的?

client端 修改標簽,就是本文開頭提到的 通過原生js,直接修改

return function updateTitle (title = document.title) {
  document.title = title
}

server端,就是通過 text方法,返回string格式的標簽

return function titleGenerator (type, data) {
  return {
    text () {
      return `<${type} ${attribute}="true">${data}`
    }
  }
}
__dangerouslyDisableSanitizers 做了什么?

vue-meta 默認會對特殊字符串進行轉(zhuǎn)義,如果設置了 __dangerouslyDisableSanitizers,就不會對再做轉(zhuǎn)義處理。

const escapeHTML = (str) => typeof window === "undefined"
  // server-side escape sequence
  ? String(str)
    .replace(/&/g, "&")
    .replace(//g, ">")
    .replace(/"/g, """)
    .replace(/"/g, "'")
  // client-side escape sequence
  : String(str)
    .replace(/&/g, "u0026")
    .replace(//g, "u003e")
    .replace(/"/g, "u0022")
    .replace(/"/g, "u0027")
最后

最開始接觸 vue-meta 是在 Nuxt.js 中。如果想了解 Nuxt.js,歡迎大家閱讀 Nuxt.js實戰(zhàn) 和 Nuxt.js踩坑分享。文中有任何表述不清或不當?shù)牡胤?,歡迎大家批評指正。
給大家推薦我們的公眾號 前端新視野 ,一個很認真的日刊公眾號,歡迎掃描下方二維碼關(guān)注!

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/92519.html

相關(guān)文章

  • Nuxt.js踩坑分享

    摘要:但是解決過程并不是很順利的,在閱讀中文文檔時,忽略版本號,按照上面的提示進行操作,發(fā)現(xiàn)不能成功,后來各種,最后發(fā)現(xiàn)了該解決方案。發(fā)生在這個問題的原因時,服務端并沒有或?qū)ο蟆? 構(gòu)建問題 1. 如何在 head 里面引入js文件? 背景: 在標簽中,以inline的形式引入flexible.js文件。本項目主要為移動端項目,引入flexible.js 實現(xiàn)移動端適配問題。 Nuxt.js ...

    nidaye 評論0 收藏0
  • 新站上線,分享10個最強chrome瀏覽器插件!瞬間開發(fā)效率加倍

    摘要:新站極簡插件打磨已久,終于上線訪問地址借此機會,推薦個最強插件,瞬間開發(fā)效率加倍用于調(diào)試應用程序的和擴展??梢越鉀Q擴展無法自動更新的問題,同時可以訪問谷歌搜索,郵箱,等谷歌服務。 showImg(http://upload-images.jianshu.io/upload_images/15934130-50747924438e3c47.jpg?imageMogr2/auto-orie...

    cnio 評論0 收藏0
  • 新站上線,分享10個最強chrome瀏覽器插件!瞬間開發(fā)效率加倍

    摘要:新站極簡插件打磨已久,終于上線訪問地址借此機會,推薦個最強插件,瞬間開發(fā)效率加倍用于調(diào)試應用程序的和擴展??梢越鉀Q擴展無法自動更新的問題,同時可以訪問谷歌搜索,郵箱,等谷歌服務。 showImg(http://upload-images.jianshu.io/upload_images/15934130-50747924438e3c47.jpg?imageMogr2/auto-orie...

    yy736044583 評論0 收藏0
  • 每日 30 秒 ? SEO初體驗

    showImg(https://segmentfault.com/img/remote/1460000018760855?w=900&h=500); 簡介 SEO、Meta、搜索引擎優(yōu)化、簡單教程 細心的同學可能發(fā)現(xiàn)了開頭出現(xiàn)了關(guān)鍵字,這是為什么呢?閱讀完本文后大家就會明白了。 同學們有沒有想過互聯(lián)網(wǎng)上用戶、網(wǎng)站 有多少呢?這里提供一個網(wǎng)站 internet live stats 里面實時的給出了...

    fai1017 評論0 收藏0

發(fā)表評論

0條評論

leone

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<